$hash{$key} = [ 1,2,3 ]; # Note the square brackets $hash{$otherkey} = [ @temp ]; # same same $hash{$key2} = \@temp; #### $hash{$key}[0]