Build a Logic Checker App - Step 2

Tell us what’s happening:

Here is my latest attempt. I’m just going of of the information in the "Working with Booleans and Operators " theory I keep getting the statement that I need to Log “Boolean(truthyOrFalsy)” to the console. Any help in the right direction would be helpful.

Your code so far


// User Editable Region

const truthyOrFalsy = true;
if(truthyOrFalsy){console.log("true")}else{console.log("false")}



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

Challenge Information:

Build a Logic Checker App - Step 2

please read again the instructions, you are not asked to create an if statement, you are asked to call a function. This step teaches you about the Boolean function, and then asks you to use it

Ok, thanks I finally figured it out.