# If initializing, this is clearer. my @c = (@a, @b); # .. or ... (now, more correct) my @c; push @c, @a, @b;