Help for this page
my @array = (0..7); splice @array, 4, 0, ('inserted-array'); print "@array\n";
# push @array, @others; splice @array, @array, 0, @others; ... # unshift @array, @others splice @array, 0, 0, @others;