Put one array into itself
#!/usr/bin/perl -w use strict; my @array2; @array2 = (3, 5, 7, 9); @array2 = (1, @array2, 11); print "@array2\n";