I’m not sure if I’m doing something wrong or if the tests aren’t running properly. Would anyone mind looking over this to let me know?
Thank you!
// 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";
}
result = lookup[val];
// 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 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/using-objects-for-lookups