Given a map and a key, remove the key from the map.
// input: const m = new Map([['apples', 1], ['bananas', 2], ['carrots', 3]]), k = 'apples' // output: { 'bananas': 2, 'carrots': 3 }
/* output */