0 / 60 seg.

What is the result of the following code?

let w1 = 3, w2 = 5;
let w3 = w1 < 4 && w2 > 4 ? "OK" : "NO";
console.log(w3);