What is the value of z after executing the following code?
z
let x = 10, y = 20; let z = x * y;
10
200
30
0