---
id: 5d7925373104ae5ae83f20a5
title: Part 83
challengeType: 0
isHidden: true
---
## Description
The `forEach` method takes a function and calls it with each element of the array.
Chain `forEach` to `letters` and pass it the `createLabel` function to create a label for each of the letters.
## Instructions
## Tests
```yml
tests:
- text: See description above for instructions.
testString: assert(code.replace(/\s/g, "").includes("letters.forEach(createLabel)"))
```
## Challenge Seed
```html
```
### Before Test
### After Test
```html
```
## Solution