What value is obtained by executing the following code?
let x = "5"; let y = 10; console.log(`Result: ${x * y}`);
"Result: ${50}"
"Result: 510"
"Result: 50"
"Result: 5 * 10"