--- id: 5d6755fce0696bdec46938df title: Part 32 challengeType: 0 --- # --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