--- id: 5d8a4cfbe6b6180ed9a1ca52 title: Part 115 challengeType: 0 --- ## Description
`append` a `tr` element to the selection and then append a `th` element right after it. `tr` is for defining a row of the table, and `th` is for defining the header cells of the table.
## Instructions
## Tests
```yml tests: - text: test-text testString: assert($('.dashboard div table thead tr th').length === 1); ```
## Challenge Seed
```html ```
### Before Test
```html D3 Dashboard
```
## Solution
```html ```