in reply to Hash of multidimensional array

I assume that you realize you are creating a hash with only one key/value pair in this code. Maybe that makes sense in a larger program. For your sake I hope so.

If so, you can (for example) access the first bottom-level array reference via: $HoA{$key}[0] and the first element in that array via $HoA{$key}[0][0]

buckaduck