以下のコードで`await`を削除するとどうなりますか? ```javascript async function getData() { const result = await fetchData(); console.log(result); } ```