Consider a list [a,b,c,d]. Which element exists at index 4?

In a list, the index positions start from 0. Therefore, if we consider the list [a,b,c,d], the index 4 does not exist. The list only has indices 0, 1, 2, and 3 for elements a, b, c, and d respectively.