Out of bounds!
If you try to get a value from any location (index) past the current length of the array, the value returned is the number 0
.
Get a value from an array at a particular index.
let item = [""][0]
let directions = ["North", "South", "East", "West"];
let path = "Turn to the " + directions[3];