Crie uma função que remova as letras "a", "b" e "c" da string fornecida e retorne a versão modificada. Se a string fornecida não contiver "a", "b" nem "c", retorne null.
removeABC("This might be a bit hard") ➞ "This might e it hrd"
removeABC("hello world!") ➞ null
removeABC("") ➞ nullSe a string fornecida não contiver "a", "b" nem "c", retorne null.