In Level 3 > Lesson 6 the instructions are not clear.
I'm trying to submit the following code which returns true and then false as requested:
let x = true;
let y = false;
// apply AND operator
console.log(x==true && y!=x);
// apply OR operator
console.log(x = y || x!=true)