The lower bound lower bound of the slice is greater than the size of the list, which is number of elements.
The application is returning a slice of a list, but the requested lower bound of the slice is greater than the number of elements in the list.Ensure that the lower bound is less than the size of the list.