--- id: 5ddb965c65d27e1512d44dbb title: Step 36 challengeType: 0 dashedName: step-36 --- # --description-- Now you can append the `resultText` to the `result` with the `appendChild()` method, like this: ```js result.appendChild(resultText); ``` # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').match(/result\.appendChild\(resultText\)/)); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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