Hello! Im stuck on step 70, as I keep getting the error message: “SyntaxError: unknown: Unexpected token, expected “,” (36:2) 34 | “button text”: [“Fight slime”, “Fight fanged beast”, “Go to town square”], 35 | “button functions”: [fightSlime, fightBeast, goTown] > 36 | text: “You enter the cave. You see some monsters.” | ^ 37 | }, 38 | ]; 39 |”.
To my understanding, this means there is a comma missing from my code in line 36. Am I understanding this correctly? If so, where should this comma go? I’ve looked at this for so long I could use some outside eyes at this point. Here is my code:
{
name: "cave",
"button text": ["Fight slime", "Fight fanged beast", "Go to town square"],
"button functions": [fightSlime, fightBeast, goTown]
text: "You enter the cave. You see some monsters.",
}
I apologize if I am not posting this correctly. Thanks for your help.