Learn Form Validation by Building a Calorie Counter - Step 46

Tell us what’s happening:

dont know whats wrong the directions said declare a HTML String vairable and give it a empty litteral i think i did that

Your code so far

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

/* file: styles.css */

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

function addEntry() {
  const targetInputContainer = document.querySelector(`#${entryDropdown.value} .input-container`);
  const entryNumber = targetInputContainer.querySelectorAll('input[type="text"]').length;
const HTMLString = '${}';
}

// 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/131.0.0.0 Safari/537.36

Challenge Information:

Learn Form Validation by Building a Calorie Counter - Step 46

Hi @ryanstruckus

Your HTMLString should be an empty template literal.

Template literals use back ticks, not quote marks.
There needs to be nothing between the back ticks.

Happy coding