Help for this page
@A = (1, 4, 7, 10, 14); @B = (1, 3, 2, 4); ... @merged = (@A, @C); # @merged = (1, 4, 7, 10, 14, 3, 2); # @A--------------- ----@C