Merhaba arkadaşlar, ben bir proje üzerinde çalışıyorum ve java script ile daha önceden seçtiğim bir grup link üzerinden rastgele bir tanesini, butona basıldığında sadece birkez seçilmesini ve o linke gidilmesini istiyorum.Şuan kullandığım kod rastgele bir seçim yapmamı sağlıyor fakat aynı link bazen 2-3 kez art arda geliyor. Bunu nasıl düzeltebilirim?

Projenin linki: http://randomemes.atwebpages.com/

Kullandığım script:

var urls = [
"apotatoflewaround.html",
'http://randomemes.atwebpages.com/links/apotatoflewaround.html',
'http://randomemes.atwebpages.com/links/prophecyistrue.html',
'http://randomemes.atwebpages.com/links/thatsmyopinion.html',
'http://randomemes.atwebpages.com/links/thecheeseoftruth.html',
'http://randomemes.atwebpages.com/links/barbecuesauce.html',
'http://randomemes.atwebpages.com/links/dieforeachother.html',
'http://randomemes.atwebpages.com/links/idothat.html',
'http://randomemes.atwebpages.com/links/inthekitchen.html',
'http://randomemes.atwebpages.com/links/itspikachu.html',
'http://randomemes.atwebpages.com/links/johncena.html',
'http://randomemes.atwebpages.com/links/mycroissant.html',
'http://randomemes.atwebpages.com/links/picturemy.html',
'http://randomemes.atwebpages.com/links/zackstop.html',

];

function goSomewhere() {
var url = urls[Math.floor(Math.random()*urls.length)];
window.location = url; // redirect
}