my @array = ("a","b","c","d","e"); my %hash; $hash{'key'} = @array; #### while (my ($key, @value) = each(%hash)){ my @extracted_array = @value; }