8.1.3. Variierende Datentypen Arrays
/*JavaScript arrays can hold a mixture of values of any type.
For example, you can have an array that contains strings, numbers,
and booleans.*/
let grabBag = ["A string value", true, 99, 105.5];
Tough Tortoise