Array Perl

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

* $AcmeCars[0] * is the first element 
in the text array.

"; 
print "

* $AcmeCars[2] * is the third element 
in the text array.

";