Understanding Boolean Values missing

Tell us what’s happening:

I dont know how to make welcometoBooleans false

Your code so far


function welcomeToBooleans() {

// Only change code below this line.

return true.welcomeToBooleans; // Change this line

// Only change code above this line.
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:64.0) Gecko/20100101 Firefox/64.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values

Modify the welcomeToBooleans function so that it returns !!!true!!! instead of false

You modify the function by changing the return value to its opposite. No need to overthink it.