Empty array with reduce

Report a typo

What is the output of the following code?

let arr = [];

let sum = arr.reduce(function(x, y) {
    return x + y;
});

console.log(sum);
Select one option from the list
___

Create a free account to access the full topic