--- id: 5ddb965c65d27e1512d44dc5 title: Part 46 challengeType: 0 --- ## Description
Another way that we can set the text of the `consumed` element is to set the `innerHTML` property. For example: ```js consumed.innerHTML = `Hello world`; ``` Set the inner HTML of `consumed` to "XX Consumed Calories", where "XX" is the `total` variable that was previously created. Use template literals.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( code.replace(/\s/g, '').match(/consumed\.innerHTML\=\`\$\{total\}ConsumedCalories\`/) ); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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