Depends, it could be name, but it depends on how you are accessing the array.
Personally, I’d say None of them, since you access an array element/item with an index (the number that the element can be referred with).
E.g. In Python…
arr = [“a”, “b”, “c”]
print(arr[0] == “a”) # Output: “True”