Learn Form Validation by Building a Calorie Counter - Step 22

Tell us what’s happening: It’s telling me I have a syntax error but I don’t see it. Here are the instructions:

Within your loop, you need to check if the character in strArray at index i is not a "+" , "-" , or a space (" " ). If it is not, push it to the cleanStrArray

function cleanInputString(str) {
const strArray = str.split(‘’);
const cleanStrArray = ;
for (let i = 0; i < strArray.length; i++) {
if (![“+”, “-”, " "].includes(strArray[i])){cleanStrArray.push(strArray[i])
}
}

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1 Safari/605.1.15

Challenge Information:

Learn Form Validation by Building a Calorie Counter - Step 22

Hi @Jimmieperr11

Add an extra closing curly brace to your code.

Happy coding

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.