0 / 60 seg.

What value is printed when executing the following code?

const words = ['one', 'three', 'two'];
words.sort((a, b) => a.length - b.length);
console.log(words[2]);