--- id: 587d7fad367417b2b2512be2 title: Change Text with click Events challengeType: 6 --- ## Description
When the click event happens, you can use JavaScript to update an HTML element. For example, when a user clicks the "Get Message" button, it changes the text of the element with the class message to say "Here is the message". This works by adding the following code within the click event: document.getElementsByClassName('message')[0].textContent="Here is the message";
## Instructions
Add code inside the onclick event handler to change the text inside the message element to say "Here is the message".
## Tests
```yml tests: - text: Your code should use the document.getElementsByClassName method to select the element with class message and set its textContent to the given string. testString: assert(code.match(/document\.getElementsByClassName\(\s*?('|")message\1\s*?\)\[0\]\.textContent\s*?=\s*?('|")Here is the message\2/g), 'Your code should use the document.getElementsByClassName method to select the element with class message and set its textContent to the given string.'); ```
## Challenge Seed
```html

Cat Photo Finder

The message will go here

```
## Solution
```js // solution required ```