Below you can find a function that is supposed to merge three different dictionaries into a single one in the same order as they are provided. Please fill in the blank for it to work properly.
def merge_dicts(dict1, dict2, dict3):
merged = # YOUR CODE HERE #
return merged