Array Perl

#!/usr/bin/perl 
print "Content-Type: text/html \n\n"; 
# This script demonstrates how to create a text array. 
@AcmeCars = ("Ford","Dodge","Chevy"); 
print "@AcmeCars"; 
print "

We have just created a text 
array!

";