I need merge maps mapA andmapB with pairs of \"name\" - \"phone number\" into the final map, sticking together the values for duplicate keys, separated
mapA
mapB
(mapA.data.asSequence() + mapB.asSequence()) .map { Pair(it.key, it.value) } .toMap()