Given a map, return the sum of all values in the map.
// input: const m = new Map([['apples', 1], ['bananas', 2], ['carrots', 3]]) // output: 6
/* output */