There are several ways to transfer arrays as parameters:

a)

As an array
Code:
Call  a(yourarray())

Function a(YourArray())
b)
As an variant
Code:
call b(yourarray())

Function b(YourVariant)
c)
As an array of parameters
Code:
call b(a,b,c,d)

Function b(Paramarray YourArray())