A dictionary receives keys in the order `b`, `a`, then `c`. In what order does ordinary iteration yield those keys?
Explanation
Dictionary iteration follows insertion order, so the keys appear as `b`, `a`, then `c`. The runtime does not sort them alphabetically for ordinary iteration or deliberately randomize their sequence.