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