Array Perl

#!/usr/bin/perl -w
use strict;
my @array = (1, 3, 5, 7, 9);
print @array[1];
print $array[1];