Array Subset

Returns a portion of array starting at index and containing length elements. When you wire an array to this function, the function resizes automatically to display index inputs for each dimension in the array you wire to array. The connector pane displays the default data types for this polymorphic function.

array is a one-dimensional array of any type.
index must be numeric. If index is less than 0, the function treats it as 0. If index is greater than or equal to the array size, the function returns an empty array.
length must be numeric. If index plus length is larger than the size of the array, the function returns only as much data as is available. The default is the length from index to the end of array.
subarray is of the same type array.