async function getFAQs() { const response = await fetch('faq.json'); const data = await response.json(); return data; }