What is the value of z after executing the following code?
z
let x = 7; let y = 2; let z = x % y + x;
5
9
7
8