What is the result of the following code?
let x = "2"; console.log(`${x} raised to 3 is ${x ** 3}`);
"2 raised to 3 is 23"
"2 raised to 3 is 2 ** 3"
"2 raised to 3 is 222"
"2 raised to 3 is 8"