Learn localStorage by Building a Todo App - Step 37

const updateTaskContainer = () => {
    taskData.forEach(({id, title, date, description}) => {
        tasksContainer.innerHTML += `
        <div class="task" id="${id}">
          <p><strong>Title:</strong> ${title}</p>
          <p><strong>Date:</strong>${date}</p>
          <p><strong>Description:</strong>${description}</p>
          <button type="button" class="btn">Edit</button>
          <button type="button" class="btn">Delete</button>
        </div>
        `;
    });
    reset();
    }

Cual es el problema?

When you ask for help please always provide the link to the step

You have changed some things while moving your forEach, I suggest you reset the step and use copy & paste.
Also, the reset function call is not part of the forEach