--- id: 5d7925361596f84067904f7f title: Step 69 challengeType: 0 dashedName: step-69 --- # --description-- Remove the `fn` declaration and return statement. Set `varRangeExpanded` to the result of using the `replace` method on `x`, with `rangeRegex` as the first argument and `""` as the second argument. Then, return it. # --hints-- See description above for instructions. ```js assert( !code.includes('const fn') && code.includes('varRangeExpanded') && evalFormula('A1:J133') === '3' ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```