以下のコードの実行結果として正しいものはどれですか? ```javascript console.log("A"); setTimeout(() => { console.log("B"); }, 0); console.log("C"); ```