What will be the output of the console.log statement in the following code snippet?
let name = 'Alice';
let age = 25;
console.log(`My name is ${name} and I am ${age} years old.`);
What will be the output of the console.log statement in the following code snippet?
let name = 'Alice';
let age = 25;
console.log(`My name is ${name} and I am ${age} years old.`);