Help for this page
@hash{"one", "two", "three"} = 1 .. 3;
($hash{one}, $hash{two}, $hash{three}) = 1 .. 3;
my @list = @hash{"one", "two", "three"};
my @list = ($hash{one}, $hash{two}, $hash{three});