Comparison operators - Less than or equal

In the console.log() statement below we use the Less Than Or Equal operator to check whether the value of numOne is less than or equal the value of numTwo. It also checks whether the value of numTwo is less than or equal the value of numThree. Change the code so that both expressions in the console.log() statement logs true.
const numOne = 1;
const numTwo = 4;
const numThree = 2; console.log(numOne <= numTwo, numTwo <= numThree);
Javascript
Console