The index of an item in a list is the position of the item in the list. Suppose you have an array of items in your values variable.
["Apple", "Orange", "Banana", "Watermelon"]
App Inventor lists start with the index of 1. In this instance, the apple would have an index of 1, and the watermelon would have an index of 4. Indices cannot exceed the length of the list (i.e. how many items the list has), and cannot be an integer below 1.
No. Indices can only be values that fulfill the following requirements.
An integer that does not exceed the length of the list.
I think it’s 0,
Can you please provide some documentation regarding this that first index of App inventor list starts from 1 not from 0 like OOP Languages