What is the result of the following code?
console.log(`5 * 5 = ${5 * 5}`);
"5 * 5 = 25"
"5 * 5 = 5 * 5"
"5 * 5 = ${5 * 5}"
"25"