What is the value of y after executing the following code?
y
let y = 5; let z = 2; y **= z;
NaN
5
2
25