export function getRandomQuote()

in src/widgets/quotes/quotes-list.ts [26:29]


export function getRandomQuote(): [quote: string, author: string] {
  const randomIndex = Math.floor(Math.random() * quotes.length);
  return quotes[randomIndex];
}