Hello!!!
So i have a problem with my code. When i try to pass it says:
Oops, try again. Make sure that mary is the second object in contacts
And here is my code:
var bob = {
firstName: “Bob”,
lastName: “Jones”,
phoneNumber: “(650) 777-7777”,
email: "bob.jones@example.com"
};
var mary = {
firstName: “Mary”,
lastName: “Johnson”,
phoneNumber: “(650) 888 - 8888”,
email: "mary.johnson@example.com"
};
var contacts = [“bob”, “mary”];
console.log("(650) 888 - 8888")
I don’t see the problem since Mary is the second object in contacts
Thanks in advance to anyone that can help.