// --- FUNKCJA POMOCNICZA DO WYŚWIETLANIA WYNIKÓW --- function wypisz(tekst) { const panel = document.getElementById('output-panel'); const nowyWpis = document.createElement('div'); nowyWpis.classList.add('log-entry'); nowyWpis.textContent = tekst; panel.appendChild(nowyWpis); }