--- id: 5ddb965c65d27e1512d44dc4 title: Step 45 challengeType: 0 dashedName: step-45 --- # --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`. # --hints-- See description above for instructions. ```js assert( /const\s*consumed\s*=\s*document\.createElement\([\'\"\`]h4[\'\"\`]\)/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

Sex
Breakfast
Lunch
Dinner
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```