Learn Form Validation by Building a Calorie Counter - Step 49

Tell us what’s happening:

I am having some issues with my code working, **it showing up an error that “i should not modify my existing element” **



function addEntry() {
  const targetInputContainer = document.querySelector(`#${entryDropdown.value} .input-container`);
  const entryNumber = targetInputContainer.querySelectorAll('input[type="text"]').length;
  const HTMLString = `
  <label for="${entryDropdown.value}-${entryNumber}-name">Entry ${entryNumber} Name</label>
  <input type="text" id="${entryDropdown.value}-${entryNumber}-name" placeholder="Name" /> 
  <label for="${entryDropdown.value}-${entryNumber}-calories">Entry ${entryNumber} Calories</label>
  `;
}

Please guys what am i doing wrong.

Your browser information:

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

Challenge Information:

Learn Form Validation by Building a Calorie Counter - Step 49

The instructions is:
Create another label element (on a new line) at the end of your HTMLString.
Reset your challenge and firstly place your cursor before ending template literal (`) and press enter key. Then add your new label element.
@bright_develops