data = await fetchp(
`https://www.goodreads.com/book/review_counts.json?key=${apiKey}&isbns=${classic_isbns}&format=JSON`,
{
headers: {
Accept: "application/json",
"Content-Type": "application/json"
}
}
).then((response) => {
return response.json();
})