Help for this page
my(@array1, @array2) = @_;
foreach my $element (@array2){ @array1 = (@array1, $element); }#foreach
sub array_merge{ @_ };