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