--- id: 5ddb965c65d27e1512d44da6 title: Part 13 challengeType: 0 isBeta: true --- ## Description
Now we need to provide a function to `map()` that will be performed on each item of the array. This function will take the original item as an argument, in our case we'll call it `meal`. Inside the `.map()` parentheses, insert an empty function that takes `meal` as a parameter, like: ```js function(meal){} ``` Enter in the above function as an argument in between the parentheses of the `.map()` function.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( code.replace(/\s/g, '').match(/map\(function\(\s*meal\)\{\}\)/) ); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

Sex
Breakfast
Lunch
Dinner
```
### After Test
```html ```
## Solution
```html ```