--- id: 5ddb965c65d27e1512d44d9a title: Part 01 challengeType: 0 isBeta: true --- ## Description
When a browser loads a page, it creates a Document Object Model (DOM) representation of the page which includes all of the HTML elements in a tree structure. In JavaScript, you can access the DOM by referencing the global `document` object. To view the DOM, log it to the console with `console.log(document)`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(code.replace(/\s/g, '').match(/console\.log\(document\)/)); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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