class Tryouts::OrderedHash

def pop

def pop
    key = @order.last
    key ? [key,delete(key)] : nil
end