--- id: 5ddb965c65d27e1512d44dcc title: Step 53 challengeType: 0 dashedName: step-53 --- # --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. # --hints-- See description above for instructions. ```js assert( /const\s*foodInput\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 ```