--- id: 5ddb965c65d27e1512d44dc2 title: Step 43 challengeType: 0 dashedName: step-43 --- # --description-- Append the `recommendedText` node to the `recommended` element. This is similar to how the `resultText` is appended to `result` previously. # --hints-- See description above for instructions. ```js assert( code.replace(/\s/g, '').match(/recommended\.appendChild\(recommendedText\)/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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