以下のコードで、コンソールに表示される順序はどうなりますか? ```html <head> <script>console.log("A");</script> </head> <body> <script>console.log("B");</script> <p>コンテンツ</p> <script>console.log("C");</script> </body> ```