--- id: 5ddb965c65d27e1512d44da3 title: Part 10 challengeType: 0 isHidden: true --- ## Description
Create a variable named `meal` and set it equal to the first index of `total` (`total[0]`). This would be the input for Breakfast on the form.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(/const\s*meal\s*=\s*total\[0\]/.test(code)); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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