{
let name = "Andy";
let age = 41;
let lifeExpectancy = 83;
function calcDeath(strings, nameExp, ageExp) {
let string1 = strings[1];
let string4 = ` and will probably die in ${lifeExpectancy - ageExp} years.`;
return `${nameExp}${string1}${ageExp}${string4}`;
}
return calcDeath`${name} is ${age} and will die someday.`;
}