--- id: 5d792537b6cadae0f4b0cda1 title: Part 94 challengeType: 0 isHidden: true --- ## 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.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(code.replace(/\s/g, "").includes("console.log(value.slice(0,2))")); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```