Callbacks and Higher-Order Functions

What will the following code output?
const numbers = [1, 2, 3, 4, 5];
const sum = numbers.reduce((accumulator, current) => {
  return accumulator + current;
}, 0);
console.log(sum);
Next Question (17/21)