The Rest operator (...) collects multiple elements into a single array. It's great for functions that accept any number of arguments.
sumAll that accepts any number of arguments using the rest operator ...numbersnumbers.reduce() to sum them all upsumAll(1, 2, 3, 4) and store it in totalSubmit your code to see test results