Easy
This question is a daily question and will count towards your daily streak.
Which line of code is missing to make the following script output 15 in the console?
1let numbers = [5, 3, 7];2let sum = numbers.reduce((acc, num) => acc + num);3// Missing line here4console.log(result);