You need to add initial values ​​to both fields in the document.
The first must be John, the second must be Doe.

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>User profile</title>
  </head>
  <body>
    <form name="profile">
      <input name="firstName">
      <input name="lastName">
    </form>
  </body>
</html>