--- id: 587d825b367417b2b2512c8d title: Create an ES6 JavaScript Map challengeType: 1 videoUrl: '' localeTitle: Создание карты JavaScript ES6 --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof myMap === "object", "The myMap object exists.");' - text: 'myMap содержит пару ключевых значений freeCodeCamp , Awesome! ,' testString: 'assert(myMap.get("freeCodeCamp") === "Awesome!", "myMap contains the key value pair freeCodeCamp, Awesome!.");' ```
## Challenge Seed
```js // change code below this line ```
## Solution
```js // solution required ```