order_summary(customer, *items, **extras) that returns a dict with keys "customer" (the customer name), "items" (a list of the positional item names, in order), and "extras" (a dict of any extra keyword info such as discount or notes).order_summary("Neha", "Pizza", "Coke", discount=10){'customer': 'Neha', 'items': ['Pizza', 'Coke'], 'extras': {'discount': 10}}Positional args after customer become items; keyword args become extras.
*items becomes a tuple — convert it to a list.
**extras is already a dict; wrap the three pieces in one result dict.