What will be the output of the console.log statement in the following code snippet?
let num1 = 5;
let num2 = 7;
console.log(`The sum is ${num1 + num2}`);
What will be the output of the console.log statement in the following code snippet?
let num1 = 5;
let num2 = 7;
console.log(`The sum is ${num1 + num2}`);