0 / 60 seg.

What value is printed when executing the following code?

const numbers = [3.1, 3.2, 2.9];
numbers.sort((a, b) => Math.floor(a) - Math.floor(b));
console.log(numbers[1]);