--- id: 5ddb965c65d27e1512d44dbb title: Part 36 challengeType: 0 isBeta: true --- ## Description
Now you can append the `resultText` to the `result` with the `appendChild()` method, like this: ```js result.appendChild(resultText); ```
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( code.replace(/\s/g, '').match(/result\.appendChild\(resultText\)/) ); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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