--- id: bd7123c8c441eddfaeb5bdef title: Say Hello to HTML Elements challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cE8Gpt2' forumTopicId: 18276 --- ## Description
```js // change code below this line ```
## Instructions
To pass the test on this challenge, change your h1 element's text to say "Hello World".
## Tests
```yml tests: - text: Your h1 element should have the text "Hello World". testString: assert.isTrue((/hello(\s)+world/gi).test($('h1').text())); ```
## Challenge Seed
```html

Hello

```
## Solution
```html

Hello World

```