---
id: 5d79253742f3313d55db981f
title: Step 086
challengeType: 0
isBeta: true
---
## Description
Replace `createLabel` with an arrow function with a block body.
This would allow us to add more statements.
The arrow function should take an argument `x`, and call `createLabel(x)`.
## Instructions
## Tests
```yml
tests:
- text: See description above for instructions.
testString: assert(/window\.onload[\s\S]*range\(1,99\)\.forEach\(\(?x\)?=>\{createLabel\(x\);?\}\);?\}/.test(code.replace(/\s/g, "")));
```
## Challenge Seed
```html
```
### Before Test
### After Test
```html
```
## Solution