`; // Insert at 6th position (index of 5 in zero-based index)
let referenceNode = allGrids[5]; // The 6th grid item
gridContainer.insertBefore(newAdvertDiv, referenceNode);
console.log("Injected missing advert grid at 6th position"); // Refresh Google Ad
if (window.googletag && typeof googletag.pubads === "function") {
googletag.cmd.push(function() {
googletag.pubads().refresh();
});
}
}
});