export function preloadImageArray(imageUrlArray) { let imgUrl; for (imgUrl of imageUrlArray) { new Image().src = imgUrl; } }