i have a hash where a particular value is an anonymous array ex: $hash{"array"} = ['a','b','c','d','e']
i can refer to individual elements of the anon. array in a scalar context ex: $hash{"array"}[2] = 'c';
but how can i count through a foreach loop for the length of that anonymous array? ex: foreach $i (0..$#array)
where in the above example $#array would refer to the anon. array in $hash{"array"}