Objects javascript

Tell us what’s happening:
I don’t know what the problem is. I think its right, but it says its not.

Your code so far


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

// Only change code below this line.

var myDog = {
  "name" : "Lucky"
  'legs' : 4,
  'tails' : 1, 
  "friends" : ["everyone"]
  
  
  
};

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36.

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

Properties must be separated by comma.

You are missing a comma after the first key value pair of your myDog object.

"name" : "lucky"

needs a comma like this

"name" : "lucky",