Suppose I have the following async function
export async function someAsyncFunction() { const result = await fetchData(); return result[0].id; }