const quotes = [
            {
                text: "chitters"
            },
            {
                text: "the end is nigh"
            },
            {
                text: "blessed be"
            },
            {
                text: "scrumptious"
            }
        ];
        function generateQuote() {
            const randomIndex = Math.floor(Math.random() * quotes.length);
            const quote = quotes[randomIndex];
            document.getElementById("quoteText").textContent = `${quote.text}`;
        }