Hint
🧠Not sure where to start?
Start by creating two dictionaries like this:
dict1 = {'a': 1, 'b': 2}
dict2 = {'c': 3, 'd': 4}
Now think: how can you combine them into one dictionary? Try using:
merged = {**dict1, ...
Or try creating a copy of one and updating it with the other:
merged = dict1.copy()
merged.update(...

