Learn Basic JavaScript by Building a Role Playing Game - Step 66

Hey @holiday387
The instructions say

Now update button2.innerText and button3.innerText to be assigned the second and third values of the button text array, respectively.

This is what you have in your first button

button1.innerText = location["button text"][0];

whatever you hae done to the first button do it for the second and third and remember arrays are zero base which means we start counting from zero

happy coding

1 Like