#!usr/bin/perl use warnings; use strict; my @arrayOfStrings = ( "An", 'array', "of strings" ); printf "%s %s %s %s %s\n", @arrayOfStrings;