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

Tell us what’s happening:

Hi ! Can somebody tell me if I have syntax errors please ? I’m said so in the console (SyntaxError: unknown: Unexpected token, expected “,” (80:2), but the line of my syntax error corresponds to a curly bracket which is compulsory for the declaration of a function. Indeed, when I look for the 140th step to compare if I have well respected the spaces, I have a totally different step!

{
    name: "win",
    "button text": ["REPLAY?", "REPLAY?", "REPLAY?"],
    "button functions": [restart, restart, restart],
    text: "You defeat the dragon! YOU WIN THE GAME! 🎉."
  }

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2.1 Safari/605.1.15

Challenge Information:

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

make sure you have a comma between the two objects here. This will produce a syntax error

 {
    name: "lose",
    "button text": ["REPLAY?", "REPLAY?", "REPLAY?"],
    "button functions": [restart, restart, restart],
    text: "You die. ☠️"
  }
  {
    name: "win",
    "button text": ["REPLAY?", "REPLAY?", "REPLAY?"],
    "button functions": [restart, restart, restart],
    text: "You defeat the dragon! YOU WIN THE GAME! 🎉."
  }

thanks for your answer Jessica )) but I put a comma between the Two values I don’t have a syntax error. This is the kind of message that I have : Your seventh

locations  value should have a text  property with the value
You defeat the dragon! YOU WIN THE GAME! 🎉

This is quite weird as I had already written it

Can you post your code showing both objects?

It will be better to see the issue and replicate it on our ends

Also, it looks like your text is not correct here

You wrote this

But the directions say

notice how the correct answer does not have a period after the 🎉

Thanks I managed to handle it. I removed the dot and I succeeded. Thanks again))

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.