The text of the paragraph with the #red-text identifier should be red.
But someone misplaced the color.
Correct this mistake using internal stylesheet.

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>The paragraph identity</title>
    <style>
      #red-text {
        color: green;
      }
    </style>
  </head>
  <body>
    <p>Paragraph 1</p>
    <p id="red-text">Paragraph 2</p>
    <p>Paragraph 3</p>
    <p>Paragraph 4</p>
  </body>
</html>