',
'
',
'
',
'
'
]
function rand(items) {
return items[items.length * Math.random() | 0];
}

function randomAdsSelecter() {
var randomads = document.getElementById("randomAds")
let tempAds = adsList
const ad1 = rand(tempAds)
let tempads = tempAds.splice(tempAds.indexOf(ad1),1)
const ad2 = rand(tempAds)
const ads = ad1
randomads.innerHTML = ads.toString()
}
randomAdsSelecter()