0 / 60 seg.

What is printed when executing the following code?

let text = '';
const arr = ['a', 'b', 'c'];
arr.forEach(letter => {
    text += letter.toUpperCase();
});
console.log(text);