I encountered a code snippet like the one below
let failures: Map<string, Array<string>> = new Map([
['1', ['a', 'b']],
['2', ['c', 'd']],
['3', ['e', 'f']]
])
Now suppose I have a specific key value as follows
const keyItem = '2'.
Given this keyItem, how can I remove 'c' from the array of strings in the failures map?