For all lists, arrays, and enumerables you can use .Count() on the end
For example,
stringarray.Count
or
{"Daniela","Sara","Hernandez","Salas"}.Count
Some additional info is that you can use UBound() --upper bound-- around it to find the last index (which is 1 less than the count)… for example UBound(stringarray)