Comparison operators - Less than

In the console.log() statement below we use the Less Than operator to check whether the value of numOne is less than the value of numTwo. Change the code so that the console.log() statement logs true.
const numOne = 2; const numTwo = 1;
console.log(numOne < numTwo);
Javascript
Console