Given a map and a number (n), add n to all values in the map.
// input: const m = new Map([['apples', 1], ['bananas', 2], ['carrots', 3]]), n = 5 // output: { apples: 6, bananas: 7, carrots: 8 }
/* output */