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]);
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]);