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