@array = qw(one two three); # @array now contains "one", "two" and "three" push(@array, qw(four five)); # @array now contains "one", "two", "three", "four" and "five"