Maps (special kind of object)

// a key in the map may only occur once
// allows keys of any type

let recipeMap = new Map([
  ['cucumber', 500],
  ['tomatoes', 350],
  ['onion',    50]
]);