0 / 60 seg.

What is printed when executing the following code?

const arr = ['a', 'b', 'c'];
const newArr = arr.map(letter => letter.toUpperCase());
console.log(newArr[0]);