# create array my @array = (1, 2, 3, 4); # push some elements on it - it grows automatically! push @array, 8; push @array, 9, 10, 11; # and print it out print "Here are the contents of the array: @array\n";