Basic JavaScript: Use the Conditional (Ternary) Operator HELP!

wont work i even consulted the video

function checkEqual(a, b) {
return a === b ? true : false;

return a === b;
}

checkEqual(1, 2);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36.

Challenge: Use the Conditional (Ternary) Operator

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/use-the-conditional-ternary-operator

the instructions tell you to return some string
try checking that again