So this is the error in the console:
Uncaught TypeError: Cannot read property 'style' of undefined.
var image = document.getElementsByClassName("zoomImg");
var trigger = document.getElementsByClassName('woocommerce-product-gallery__trigger'); 
    function enlarge() {
        image.style.width = "1000px"; //The error happens here
        image.style.height = "900px";
    }
    window.onload = function() { trigger.addEventListener("mouseover", enlarge());
    }
 
     
    