--- id: bd7993c9c69feddfaeb8bdef title: Store Multiple Values in one Variable using JavaScript Arrays challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof myArray == "object", "myArray should be an array.");' - text: '' testString: 'assert(typeof myArray[0] !== "undefined" && typeof myArray[0] == "string", "The first item in myArray should be a string.");' - text: '' testString: 'assert(typeof myArray[1] !== "undefined" && typeof myArray[1] == "number", "The second item in myArray should be a number.");' ```
## Challenge Seed
```js // Example var ourArray = ["John", 23]; // Only change code below this line. var myArray = []; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```