Using Objects for Lookups what to do

Tell us what’s happening:

Your code so far


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

  // Only change code below this line
 var val = {
  "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("charlie");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

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

you created the object but you forgot to finish the instructions:

Convert the switch statement into an object called lookup. Use it to look up val and assign the associated string to the result variable.

So instead of calling the object ‘val’, you should be calling it ‘lookup’
and then use the new object to lookup the value of val