say i have two arrays, array1 and array2

array1 has 20 elements and array2 has 5 elements

i wish to assign array1 elements 0-4 to array2

can i do this in a single statement?

something like this though i don't think syntax is correct for vb:
Code:
array2=array1(0:4)