A script with a bird data object has been added to the file index.html.
You need to go through the properties of this object and add each property to the body.
The property must appear in the h3 tag.
A ul element must appear under each heading.
The elements of the corresponding field become elements of each list.
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>
  <head>
    <title>Birds</title>
  </head>
  <body>
    <script>
      const birds = {
        "North American Birds": [
          "Abert's Towhee",
          "Acadian Flycatcher",
          "Acorn Woodpecker",
          "Bendire's Thrasher",
        ],
        "European Birds": [
          "Taiga bean goose",
          "Lesser white-fronted goose",
          "Tundra swan",
          "Barrow's goldeneye",
        ],
      };
    </script>
  </body>
</html>