in reply to Multidimentional array help
my @another_array; for ( @dir_loc ) { push @another_array, [ $_, qw/US M10 WEDNESDAY SEASONAL/ ] } [download]
You can access this new array using something like:
print $another_array[2][3]; #WEDNESDAY [download]