What is the value of z after executing the following code?
z
let x = "5"; let y = 2; let z = x * y;
10
"10"
"52"
25