--- interface FaqItem { q: string; a: string; } interface Props { items: FaqItem[]; } const { items } = Astro.props; const groupId = `faq-${Math.random().toString(36).slice(2, 8)}`; ---