--- id: 5d792537b6cadae0f4b0cda1 title: Part 94 challengeType: 0 dashedName: part-94 --- # --description-- The `slice` method takes two arguments. It extracts characters from the string from the index specified by the first argument up to (but not including) the second argument. The index starts at 0. Use the `slice` method to log the first two letters of `value` to the console. # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').includes('console.log(value.slice(0,2))')); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```