Build a Todo App using Local Storage - Step 67

Tell us what’s happening:

i have tried it many times visited the forum but no change so what to do

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

  const taskObj = {
  id: removeSpecialChars(titleInput.value).toLowerCase().split(" ").join("-"),
  title: removeSpecialChars(titleInput.value),
  date: dateInput.value,
  description: removeSpecialChars(descriptionInput.value),
};





// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a Todo App using Local Storage - Step 67

you start with
`${titleInput.value.toLowerCase().split(" ").join("-")}-${Date.now()}`

so where is the rest?

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!