--- id: 5dbbf3796ef5fe3a704f849e title: Part 135 challengeType: 0 isBeta: true --- ## Description
Add a new object to the `locations` array. Set `name` to "easter egg", `"button text"` to `["2", "8", "Go to town square?"]`, `"button functions"` to `[pickTwo, pickEight, goTown]`, and `text` to "You find a secret game. Pick a number above. Ten numbers will be randomly chosen between 0 and 10. If the number you choose matches one of the random numbers, you win!"
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: | assert.deepStrictEqual(locations[7], {name: "easter egg","button text": ["2", "8", "Go to town square?"],"button functions": [pickTwo, pickEight, goTown],text: "You find a secret game. Pick a number above. Ten numbers will be randomly chosen between 0 and 10. If the number you choose matches one of the random numbers, you win!"}); ```
## Challenge Seed
```html ```
### Before Test
```html RPG - Dragon Repeller
XP: 0 Health: 100 Gold: 50
Monster Name: Health:
Welcome to Dragon Repeller. You must defeat the dragon that is preventing people from leaving the town. You are in the town square. Where do you want to go? Use the buttons above.
```
### After Test
```html ```
## Solution
```html ```