--- id: 5d7925398d525f61a9ff3a79 title: Part 126 challengeType: 0 dashedName: part-126 --- # --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`. # --hints-- See description above for instructions. ```js assert( JSON.stringify(spreadsheetFunctions.range([1, 5])) === '[1,2,3,4,5]' && code.includes('...') ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```