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

Tell us what’s happening:

Hello .There is something wrong with my code. Please help me.

location = [
    {
        name: "forest",
        buttonText: ["Explore forest", "Rest", "Go to town square"],
        buttonFunctions: [exploreForest, rest, goTown],
        text: "You are in a mysterious forest."
    },
    {
        name: "castle",
        buttonText: ["Enter castle", "Look around", "Go to town square"],
        buttonFunctions: [enterCastle, lookAround, goTown],
        text: "You stand before a grand castle."
    },
    {
        
        name: "cave",
        buttonText: ["Fight slime", "Fight fanged beast", "Go to town square"],
        buttonFunctions: [fightSlime, fightBeast, goTown],
        text: "You enter the cave. You see some monsters."
    }
];

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region



 location = [
    {
        name: "forest",
        buttonText: ["Explore forest", "Rest", "Go to town square"],
        buttonFunctions: [exploreForest, rest, goTown],
        text: "You are in a mysterious forest."
    },
    {
        name: "castle",
        buttonText: ["Enter castle", "Look around", "Go to town square"],
        buttonFunctions: [enterCastle, lookAround, goTown],
        text: "You stand before a grand castle."
    },
    {
        
        name: "cave",
        buttonText: ["Fight slime", "Fight fanged beast", "Go to town square"],
        buttonFunctions: [fightSlime, fightBeast, goTown],
        text: "You enter the cave. You see some monsters."
    }
];




// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0

Challenge Information:

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

you need to put them in quotes and a space between

1 Like

Thanks, you’ve really helped me with it.