We received urgent edits from the designer - we need to temporarily hide the second paragraph.
Use the display property for this, specify styles using the hidden identifier.

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>Hide me!</title>
  </head>
  <body>
    <p>HTTP/3 provides a low-latency and high-performance connection.</p>
    <p>According to W3Techs, 4.1% of the top 10 million websites support HTTP/3.</p>
  </body>
</html>