You need to add a text node to the existing paragraph using JS.
The text should be as follows - Hello, dear user.
Use the internal script.

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>Dashboard</title>
    <style>
      p {
        text-align: right;
        padding: 10px;
      }
    </style>
  </head>
  <body>
    <p></p>
  </body>
</html>