--- id: 5d79253582be306d339564f6 title: Part 55 challengeType: 0 dashedName: part-55 --- # --description-- Replace the `n1` return value in `rangeFromString` with `range(n1, n2)`. # --hints-- See description above for instructions. ```js assert( /evalFormula.*constrangeFromString=\(n1,n2\)=>range\(n1,n2\)/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```