How would I reverse the elements in the hash, keeping the same values and keys, but reversing their order in the hash.
Like so:
{ \"4\" => \"happiness
reversed_h = Hash[h.to_a.collect(&:reverse)]