Javascript: Boolean expression

Hi…

in the quiz boolean expressions, the last task was to calculate the result of ((4 * 2)> 3) && ((6-3)> 20)
When i calculate this it gives me a false result which was the correct answer.
But when i copy paste the expression into the console the output gives true as result!

You’re missing one set parentheses, the entire expression should be inside the parentheses of console.log
The way you wrote it, only the left expression is inside the console.log(), and that expression is indeed true.

Yes indeed now i see it with enlarging my screenshot, i have copy paste the expression into the console and probably missed that last parentheses. Thanks