my @hello = ("Hello", "World", "BANG!"); sub ListInsert { my @lsList = @_; my $sItem = @_; my $nItem = @_; splice(@lsList, $nItem, 0, $sItem); print "@lsList\n"; } ListInsert(@hello, 2,"!");