If I declare an empty array
let array: [Int] = []
When slicing from the first item to the end, I get an empty array
array[0...] -> []
However, I cannot index this array. The following line causes the program to crash.
array[0]
Why is that?