Tell us what’s happening:
I have checked every forum on this matter and i cannot find the answer on why my code doesnt pass. I have tried every variant i can find on this forum and all i get is "Your addEntry function should have a targetInputContainer variable
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
function addEntry() {
const targetId = '#' + entryDropdown.value;
const targetInputContainer = document.querySelector(${targetId} ' .input-container');
}
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0
Challenge Information:
Learn Form Validation by Building a Calorie Counter - Step 40