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

Tell us what’s happening:

Hi guys im struggling here its stating the variable monsters should be an array but i cant see where im going wrong.

Your code so far

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

/* file: styles.css */

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

const monsters = [
  {
    name: "slime",
    power: 2,15
    },
  {
    name: "fanged beast",
    power: 8,60
    },
  {
    name: "dragon",
    power: 20,300
     }
  ];


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

Challenge Information:

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

Hi there!

three objects, each with a name , level , and health properties

Where’s the level and health properties?

1 Like

completely missed that thanks

1 Like

you also have a syntax error

when you have a syntax error the tests stop working

1 Like