--- id: 5ddb965c65d27e1512d44dcc title: Part 51 challengeType: 0 isBeta: true --- ## Description
Inside the function, create an `input` document element and assign it to a variable named `foodInput`. This is similar to how you created the `result` element previously.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(/const\s*foodInput\s*=\s*document\.createElement\([\'\"\`]input[\'\"\`]\)/.test(code)); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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