Array Perl

@array = ("one", "two");
splice(@array, 2, 0, "three");
print join(", ", @array);