以下のコードの実行結果はどうなりますか? ```javascript async function test() { console.log('A'); await wait(1); console.log('B'); await wait(1); console.log('C'); } ```