I'm sure I'm missing something, I am done storing arrays as values to my hash, but what I'm printing is an array reference and not the elements although I'm looping through it. All I'm getting is ARRAY(0x1c....).
Here is what I have done so far:
foreach $y ($hash{$first_char}){
print $y;
}
What is missing?
EDIT: this might be a duplicate, but it isn't specific.
ANSWER: missing the @{}
foreach $y (@{$hash{$first_char}}){
print $y;
}