hi. doing the spam filter project. and using the jaws for windows screen reader. cannot see if any hidden characters or hidden trailling spaces. using visual studio code. and using google chrome for the fcc editor. now on step 29. i will paste the link to the step. so, it is not liking the escape characters and have written the code, did try researching on google. almost similar or same code. so what am i doing wrong? what is fcc expecting for this step. give me technical advice on how to get this to pass. will paste the code below and the link to the step and the error message and test.(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
thank you.(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
marvin.(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
JavaScript:(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
const helpRegex = /help/i;(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
const dollarRegex = /[0-9]+\s*(hundred|thousand|million|billion)?\s+dollars/i;(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
Step 29:(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
const freeRegex = /(?:\s|^)fr[e3][e3] m[o0]n[e3]y(?:\s|$)/i;(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
const stockRegex = /[s5][t7][o0][c\{\[\(]k [a@4]l[e3]r[t7]/i;(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
const denyList = [helpRegex, dollarRegex, freeRegex, stockRegex];(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
function isSpam(msg) {(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
return denyList.some(regex => regex.test(msg));(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
Step 29:(https://www.freecodecamp.org/learn/full-stack-developer/workshop-spam-filter/step-29)
b