in reply to Re^2: Array_ref into Array_ref Help.
in thread Array_ref into Array_ref Help.

Do you mean you want to assemble the arrays into multidimensional structures? You should probably read up on arrays of arrays in perllol. The short answer is you could do it using

my @AoA = ($array_ref, $array_ref_b);