0 / 60 seg.

What value is printed when executing the following code?

const numbers = [1, 2, 3];
const squares = numbers.map(x => x * x).filter(x => x > 2);
console.log(squares.length);