Tambahkan kunci dan nilai ke tempat pertama di hash ruby

hash1 = { two: 2, three: 3 }

#add a new key,value 
hash1 = Hash[:one,1].merge!(hash1) #=> {:one=>1, :two=>2, :three=>3}
D734M37