What value is obtained when executing the following code?
let x = 5, y = 10; let z = (x > y) || (x <= y); console.log(z);
false
5
true
10