0 / 60 seg.

What value is obtained when the following code is executed?

const arr = [1, 2, 3, 4];
const found = arr.find(x => x > 2);
console.log(found);