What is the output?let numbers = [1, 2, 3, 4]; let sum = numbers.reduce((acc, val) => acc + val); console.log(sum);