How can you replace all occurrences of "apple" with "orange" in the following string?
const cadena = "apple apple";
cadena.switch("apple", "orange")
cadena.swap("apple", "orange")
cadena.replaceAll("apple", "orange")
cadena.replace("apple", "orange")