--- id: 5ddb965c65d27e1512d44dd5 title: Step 62 challengeType: 0 dashedName: step-62 --- # --description-- Add the `calorieInput` element to the element with the `id` of `entries` by using the `appendChild()` method. The Add Entry functionality is now finished. You can test it by clicking the "Add Entry" button, entering in food names and their calories, and then clicking the "Calculate" button. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match( /document\.getElementById\([\'\"\`]entries[\'\"\`]\)\.appendChild\(calorieInput\)/ ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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