in reply to Re: Get Element inArray
in thread Get Element inArray

To explain that a little, negative array indices count from the end of the array: -1 is the last element, -2 the one before that, and so on.

Scalar value @arr[-2] better written as $arr[-2]

And it should be $arr[-2] (with a $ sigil) at least in current Perl (Perl 6 will change that).