Get size of an array in Sorcar

In python, if you have an array, and you wanted to know how many elements are in that array, you could type…

MyArray = [1, 8,4, 3]
len(MyArray)
answer = 4 elements

is there a node that can do this in Sorcar?