You call your spouse to inform his/her most precious item is gone! Given a dictionary of stolen items, return the most expensive item on the items.
most_expensive_item({
"piano": 2000,
}) ➞ "piano"
most_expensive_item({
"tv": 30,
"skate": 20,
}) ➞ "tv"
most_expensive_item({
"tv": 30,
"skate": 20,
"stereo": 50,
}) ➞ "stereo"