just like any other variable.
declare them in the first sub or global, on reference to the second sub put them between brackets, like this:
'Global declaration, variables can be used in entire script.
Dim strArray(1, 10) as String
Private Sub First()
'Local declaration, used in only this sub or referred to when calling subs.
Dim intArray(1, 10) as Integer
Second(intArray)
'or
Second()
End Sub
Private Sub Second(intArray)
strArray(1) = "A"
intArray(1) = 2
End Sub