I'm stuck what did i not see or what did i forget to put in?

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

const myDog = {
// Only change code below this line
var myDog ={
"Name": "Bodang",
"legs": 4,
"tails": 1
"Friends": ["Bobo"]
}

// Only change code above this line
};
  **Your browser information:**

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

Challenge: Build JavaScript Objects

Link to the challenge:

why are you defining an object inside an object? that is not correct

The object myDog is already declared for you as a set-up. You only need the properties

Hi, @marklucasvandelft
You do not have to re-define myDog object again. Just insert the relevant properties inside the object.

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