--- id: 5d6755fce0696bdec46938df title: Part 32 challengeType: 0 dashedName: part-32 --- # --description-- Inside the `"button text"` array, add three string elements. Use the three stings assigned to the buttons inside the `goTown` function. Here is an example array with three strings: `const arr = ["one", "two", "three"];`. # --hints-- See description above for instructions. ```js assert.deepStrictEqual(locations[0]['button text'], [ 'Go to store', 'Go to cave', 'Fight dragon' ]); ``` # --seed-- ## --before-user-code-- ```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-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```