0 / 60 seg.

What value is printed when executing the following code?

const letters = ['a', 'b', 'c'];
const capitals = letters.map(x => x.toUpperCase());
console.log(capitals[0]);