There's a predefined function called special, a predefined variable ingredient that contains a string, and a predefined variable dishes that contains a dictionary.
The function special accepts a string with an ingredient name, and then a number of keyword arguments.
Call the function special by means of the variables ingredient and dishes.
Tip: Mind the order: first, positional arguments, and then the rest. You cannot pass the dictionary without unpacking. What should we do to pass on keyword arguments?