async function getGoodrx(drugName) {
const goodrxURL = "https://www.goodrx.com/widget/low-price?drug_name=" ;
const corsURL ="";
window.open(goodrxURL + drugName,"_blank");
let url = corsURL+goodrxURL + drugName ;
let html = await fetch(url).then((response) => response.text());
console.log(html);
return html;
}