I am trying to replace the "www" in src with "refresh" for a collection of images with class "cover".
let testing = document.querySelectorAll(".cover");
for (index = 0; index < testing.length; index++) {
    var x = document.querySelectorAll(".cover");
    x.src = x.src.replace("www", "refresh");
} 
 
    