What is Anthony's Secret?

Wait for the Reveal...

.log("Audio couldn't play automatically"); } } // Trigger the flash sequence randomly let minTime = 1000; // 10 seconds let maxTime = 3000; // 30 seconds function scheduleNextFlash() { const nextFlashTime = Math.random() * (maxTime - minTime) + minTime; setTimeout(() => { triggerFlashSequence(); scheduleNextFlash(); // Schedule the next flash }, nextFlashTime); } // Start scheduling flashes scheduleNextFlash(); // Also trigger when the magic ball reveals certain scary answers const triggerFlashAnswers = ["BEWARE", "RUN", "FEAR HIM", "TRAPPED", "DOOMED", "UNSPEAKABLE"]; const originalShakeBall = shakeBall; shakeBall = function() { originalShakeBall(); // After the shake animation and answer is displayed setTimeout(() => { const currentAnswer = answerDisplay.textContent; if (triggerFlashAnswers.includes(currentAnswer)) { triggerFlashSequence(); } }, 850); }; });