There's a syntax error on line 8

Tell us what’s happening:
I reset the code once and even deleted the line entirely and the error still remains

Your code so far


// Setup
function phoneticLookup(lookup) {
var result = "";

// Only change code below this line
var lookup = {
   "alpha": "Adams"
   "bravo" : "Boston",
   "charlie":"Chicago",
   "delta" : "Denver",
   "echo" :"Easy",
   "foxtrot" :"Frank"
};

// Only change code above this line
return result;
}

phoneticLookup("charlie");

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.88 Safari/537.36 Edg/87.0.664.60.

Challenge: Using Objects for Lookups

Link to the challenge:

You are missing a comma(,) somewhere

thank you that fixed it