Learn Form Validation by Building a Calorie Counter - Step 69

Tell us what’s happening:

why am i getting the following message on my code;
You should call document.querySelectorAll() with #breakfast input[type=number].

Your code so far

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

/* file: styles.css */

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

function calculateCalories(e) {
  e.preventDefault();
  isError = false;
const breakfastNumberInputs = document.querySelectorAll('#breakfast input[type="number"]');

}

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

Challenge Information:

Learn Form Validation by Building a Calorie Counter - Step 69

Hi there!

You didn’t need quote marks around the value number, within input type selector.

…querySelectorAll('#breakfast input[type=“number”]')
Why do we need the backquotes here? I thought you used it only if something was dynamic and you need to add a ${variable that will change in the expression}.
But here the expression never changes. What do I miss?