What is the result of the following code?
let w1 = 3, w2 = 5; let w3 = w1 < 4 && w2 > 4 ? "OK" : "NO"; console.log(w3);
OK
NO
3
5