in reply to Pushing multi-dimensional arrays onto each other

push(@a,@b)
push(@a,[@b])

The first line will push elements of array b onto array a. The result will be 1-dimensional. The second line pushes @b, as an array, onto @a to create a 2-dimensional array.

Hope that helps.