I'm trying to replace the word hello anywhere on the page with the word hi using Javascript. I created the script below however it isn't working how anticipated, is there something that I can do  to achieve the outcome desired.
function(data) {
            var newdata = data.replace("hello", "hi");
}
 
    