What is the result of z after executing the following code?
z
let x = 5; let y = 10; let z = x + y * 2;
15
20
30
25