How can I correct a hint on a lesson?

I wasn’t getting my solution to work for the “Use Conditonal Ternary Operator” lesson so I looked at the hint: https://guide.freecodecamp.org/certifications/javascript-algorithms-and-data-structures/basic-javascript/use-the-conditional-ternary-operator/

I used exactly what was listed as a solution in the hint but it did not work. It worked when I changed a = b ? to a == b ?. Also, the parentheses are not needed. How can I correct the solution?

Also, my solution will not work if I put true and false in quotations like in the example, why is this?

Thank you for helping make FCC better. Bugs can be reported as GitHub Issues. Whenever reporting a bug, please check first that there isn’t already an issue for it and provide as much detail as possible.

I’m pretty sure that this Guide article has been fixed, and the fix just hasn’t been published yet.

I did a search for it but couldn’t find anything. Not sure where else to check…

Also, why should true and false in this example not have quotation marks?

"true" and "false" are strings. true and false are boolean values.

if("false") {
   // this code will run because non-empty strings are truthy
}
if (false) {
    // this code will not run because false is falsey
}