My test won't load #4

function phoneticLookup(val) {
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;
}

console.log(phoneticLookup(“charlie”));

if the issue is that your function is not passing the tests, it is because your function is returning an empty string (var result = '' at the top and then return result at the bottom)

otherwise ask again.

In future, please, if you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.