--- id: 5ddb965c65d27e1512d44dc4 title: Part 45 challengeType: 0 --- # --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