0 / 60 seg.

What is obtained when executing the following code?

const letters = ['a', 'b', 'c'];
const together = letters.reduce((acc, l) => acc + l, '');
console.log(together);