--- id: 5ddb965c65d27e1512d44dd0 title: Part 57 challengeType: 0 --- ## Description
Create a variable named `calorieInput` and set it equal to another `input` document element. This is similar to how you created the `foodInput`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(/const\s*calorieInput\s*=\s*document\.createElement\([\'\"\`]input[\'\"\`]\)/.test(code)); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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