0 / 60 seg.

What value is printed when executing the following code?

const arr = ['a', 'b', 'c'];
const combined = arr.map((x, i) => x + i);
console.log(combined[1]);