--- id: 5ddb965c65d27e1512d44dbc title: Step 37 challengeType: 0 dashedName: step-37 --- # --description-- Similarly, append the `result` to the `output` element with the `appendChild()` method. Now if you enter in data and push the Calculate button, you will see the text added to the HTML document! # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').match(/output\.appendChild\(result\)/)); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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