

const quotes = [
{...
];
const quote = document.querySelector("#quote span:first-child");
const author = document.querySelector("#quote span:last-child");
const todayQuote = quotes[Math.floor(Math.random() * quotes.length)]
quote.innerText = todayQuote.quote
author.innerText = todayQuote.author;
금요일은 즐기규~