@array = 5..9; print " @array \n"; push @array, 10; print "@array \n" ; push @array, qw( fred barney wilma) ; print "@array \n" ;