--- id: 5ddb965c65d27e1512d44dc1 title: Part 42 challengeType: 0 dashedName: part-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