Zero Index
Imagine a youtube video that you want to play from the beginning, you would play it from 00:00, which is position 0. The first slice is the part between 0 and 1, the second between 1 and 2, and so on. The fourth slice would be between 3 and 4. If we try to play something from the position of 4, we are trying to continue playing after the clip has ended. There is nothing there.
We reference the slices by their distance to the beginning. Since the first slice starts at the beginning, there is no distance, hence the position is 0. This is called zero indexing and is a common concept across many programming languages. It is useful to know about in programming in general. You can think of the word index as a fancy word for position.