Help for this page
my @array; my ($i,$j); ... for ($j=4; $j<10; $j++) { $array[$j]= 50; }
my @array; ... ### wrong syntax $array[4..9] = 50;