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

Tell us what’s happening:

It is telling me my weapons array should have four values, I have four values and I’m not sure what is different about the code to the locations array.

Your code so far

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

/* file: styles.css */

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

const weapons = [
  {
    name = "stick", 
power = 5
},
{
  name = "dagger",
 power = 30
 },
{
  name = "claw hammer",
 power = 50
 },
{
  name = "sword",
 power = 100
 },
 ];

// 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/126.0.0.0 Safari/537.36

Challenge Information:

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

you can’t use assignment operator here, you need to use the proper syntax for object literals

1 Like