Check Free Shipping Eligibility

Determine with Python if an order qualifies for free shipping based on the total cost.

Here, assist a shop owner to determine if an order qualifies for free delivery. The shop offers free delivery for orders totaling more than 50 units. ### Parameters - `order` (dictionary) - A Dictionary where the key is the item's name (string), and the value is its cost (float). ### Return Value - Returns `True` if the cumulative cost of all items in the order exceeds or equals 50; - Returns `False` otherwise. ### Examples ```python # Cumulative cost (5.99 + 15.99 = 21.98) is less than 50 check_free_shipping_eligibility({ "Shampoo": 5.99, "Rubber Ducks": 15.99 }) # False # Cumulative cost (399.99) is more than 50 check_free_shipping_eligibility({ "Flatscreen TV": 399.99 }) # True # Cumulative cost (11.99 + 35.99 + 13.99 = 61.97) is more than 50 check_free_shipping_eligibility({ "Monopoly": 11.99, "Secret Hitler": 35.99, "Bananagrams": 13.99 }) # True ```