One script has already been added to index.html that displays the message This is the second message.
You need to add one more script in which the message should be displayed in the console: This is the first message.
This message should appear before the message This is the second message.
Do not use external scripts.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<!DOCTYPE HTML>
<html>
  <head>
    <title>Script practice</title>
  </head>
  <body>
    <h2 style="text-align: center">
      Open console
    </h2>
    <script>
      console.log("This is the second message")
    </script>
  </body>
</html>