Building a Java Script Object

Tell us what’s happening:
I’ve been able to write the code but i noticed that it’s not running the test.

Your code so far


var myDog = {
// Only change code below this line
var myDog = {
"name": "kenzie",
"legs": 4,
"tails": 1,
"friends": ["humans"]
};
// 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/87.0.4280.67 Safari/537.36 Edg/87.0.664.55.

Challenge: Build JavaScript Objects

Link to the challenge:

this si wrong syntax, you can’t define a variable inside an object

the tests don’t run if you have syntax errors