Using Objects for Lookups , dont know what went wrong

Tell us what’s happening:

Your code so far


// Setup
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;
}

// Change this value to test
phoneticLookup("alpha");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36.

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

The result variable is still an empty string ! Don’t forget to update it it so your function returns the right value.

can you tell me what i should update?

If you read the instructions again :

Convert the switch statement into an object called lookup

You got that right !

Use it to look up val and assign the associated string to the result variable.

That’s what you need to do now !