max keys from hash ruby

hash = { "one" => 1, "two" => 2, "three" => 3, "four" => 4, "five" => 5 }

max_keys = hash.select { |k, v| v == hash.values.max }.keys