--- id: 5ddb965c65d27e1512d44dc1 title: Part 42 challengeType: 0 isBeta: true --- ## 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`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( code.replace(/\s/g, '').match(/document\.createTextNode\(\`\$\{maxCalories\}RecommendedCalories\`/) ); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

Sex
Breakfast
Lunch
Dinner
```
### After Test
```html ```
## Solution
```html ```