Esegui un cerca e sostituisci sulla frase utilizzando gli argomenti forniti e restituisci la nuova frase.
Il primo argomento è la frase su cui eseguire la ricerca e sostituzione.
Il secondo argomento è la parola che stai cercando.
Il terzo argomento è quello con cui sostituirai il secondo argomento.
**Nota:** Preserva l'iniziale maiuscola o minuscola del primo carattere nella parola originale se viene sostituita. Per esempio, se intendi sostituire la parola `Book` con la parola `dog`, dovrebbe essere sostituita come `Dog`
# --hints--
`myReplace("Let us go to the store", "store", "mall")` dovrebbe restituire la stringa `Let us go to the mall`.
```js
assert.deepEqual(
myReplace('Let us go to the store', 'store', 'mall'),
'Let us go to the mall'
);
```
`myReplace("He is Sleeping on the couch", "Sleeping", "sitting")` dovrebbe restituire la stringa `He is Sitting on the couch`.
```js
assert.deepEqual(
myReplace('He is Sleeping on the couch', 'Sleeping', 'sitting'),
'He is Sitting on the couch'
);
```
`myReplace("I think we should look up there", "up", "Down")` dovrebbe restituire la stringa `I think we should look down there`.
```js
assert.deepEqual(
myReplace('I think we should look up there', 'up', 'Down'),