SuperEnalotto

Seleziona 6 numeri da 1 a 90. Il costo base è di €2,50.

Costo Totale

€0.00

Come Giocare

  • Seleziona 6 numeri da 1 a 90
  • Il costo base è di €2,50
  • Le estrazioni avvengono il martedì, giovedì, venerdì e sabato alle 20:00
  • Jackpot minimo garantito di €2.000.000
// Generate number grid const numberGrid = document.querySelector('.number-grid'); for (let i = 1; i <= 90; i++) { const number=document.createElement('div'); number.className='number' ; number.textContent=i; numberGrid.appendChild(number); }