--- id: 5d79253770083fb730c93a93 title: Part 95 challengeType: 0 dashedName: part-95 --- # --description-- You don't have to specify the second argument in `slice`. If you don't, then `slice` will extract from the first argument to the end of the string. Change the call to `slice` to log all characters except the first instead. # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').includes('console.log(value.slice(1))')); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```