If I have code such as follows with use warnings on, what does it mean when I get "Use of uninitialized value in array element at noname.pl line 6." and how do I get rid of it?
use strict;
use warnings;
my $count;
my @array=(1,2,3);
open(FILE,">/myfile.txt");
print FILE "$array[$count]\n";
close(FILE);