Reference single array element by using the $ not @
#!/usr/bin/perl -w use strict; my @array = (1, 3, 5, 7, 9); print @array[1]; print $array[1];