--- id: 5ddb965c65d27e1512d44dc4 title: Part 43 challengeType: 0 isBeta: true --- ## Description
Similar to the `recommended` element, we are going to create a `consumed` element that will display the amount of calories consumed. Create an `h4` element and assign it to a variable named `consumed`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(/const\s*consumed\s*=\s*document\.createElement\([\'\"\`]h4[\'\"\`]\)/.test(code)); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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