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