--- id: 5ddb965c65d27e1512d44dd0 title: Step 57 challengeType: 0 dashedName: step-57 --- # --description-- Create a variable named `calorieInput` and set it equal to another `input` document element. This is similar to how you created the `foodInput`. # --hints-- See description above for instructions. ```js assert( /const\s*calorieInput\s*=\s*document\.createElement\([\'\"\`]input[\'\"\`]\)/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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