#!/usr/bin/perl -wuse strict;my @array2;@array2 = (3, 5, 7, 9);@array2 = (1, @array2, 11);print "@array2\n";