--- id: 5ddb965c65d27e1512d44dc1 title: Step 42 challengeType: 0 dashedName: step-42 --- # --description-- We want the `recommendedText` to say "XX Calories Recommended" where "XX" is the `maxCalories` variable that was previously created. Update text of `recommendedText` to use the `maxCalories` variable in a template literal along with the text "Calories Recommended". This is similar to template literal syntax previously used to create `resultText`. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match(/document\.createTextNode\(\`\$\{maxCalories\}RecommendedCalories\`/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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