Build JavaScript Objects SOLVED

Tell us what’s happening:

All tests are passing except:

myDog should contain the property friends and it should be an array .

Your code so far


// Example
var ourDog = {
  "name": "Camper",
  "legs": 4,
  "tails": 1,
  "friends": ["everything!"]
};

// Only change code below this line.

var myDog = {
    "name": "hi",
    "legs": 56,
    "tails": 9,
    "freinds": ["string", "cat"]
};


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects/

friends isn’t spelled correctly

1 Like

That was it.

Thanks for the help.