0 / 60 seg.

What value is obtained when executing the following code?

let z = 5;
if (z > 10) {
  z++;
} else {
  z--;
}
console.log(z);