We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Duplicate Keys

Because dictionaries rely on unique keys, you can't have two of the same key in the same dictionary. If you try to use the same key twice, the first value will simply be overwritten.

Assignment

The get_character_record function takes a character's name, server, level, and rank. It should return a dictionary based on the given fields.

A developer on our team has introduced a bug by specifying duplicate keys in the dictionary! Fix the bug.