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

Tell us what’s happening:

i dont know why but its showing: Your weapons array should have four values.
But i have added four values can anybody help

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

Just like your locations array

Look at how your locations array is constructed.

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