0 / 60 seg.

What value is obtained when executing the following code?

let i = 10, j = 5;
let k = i > 9 || j < 3 ? "correct" : "incorrect";
console.log(k);