Subtract numbers using reduce

Report a typo

What is the output of the following code snippet?

let numbers = [200, 500, 900];

let difference = numbers.reduce(
  (accumulator, currentValue) => accumulator - currentValue
);

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

Create a free account to access the full topic