class Tryouts::OrderedHash

def to_a

def to_a
    ary = []
    each { |k,v| ary << [k,v] }
    ary
end