--- id: 5d7925398d525f61a9ff3a79 title: Part 126 challengeType: 0 isHidden: true --- ## Description
The spread operator allow you to pass multiple arguments instead of an array: ```js const arr = [1, 2, 3]; const sum3 = (a, b, c) => a + b + c; sum3(...arr); // 6 ``` Use the spread operator to add `range` to `spreadsheetFunctions`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(JSON.stringify(spreadsheetFunctions.range([1, 5])) === "[1,2,3,4,5]" && code.includes("...")); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```