Tell us what’s happening:
i have redone this step more than once now, I have looked at the help guide, I even looked at the example given. Everything seems to be lining up correctly, but I can’t see the issue.
Your code so far
// Setup
function phoneticLookup(val) {
let 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/119.0.0.0 Safari/537.36
Challenge Information:
Basic JavaScript - Using Objects for Lookups