Hello I was testing on this excersice and playing around.
So I typed
console.log(65 / 240 + " Hello " + (23 + 4));
And It printed at the last one: 0.2708333333333333 Hello 27
but when I type this
console.log(65 / 240 + " Hello " + 23 + 4);
It prints out at the end: 0.2708333333333333 Hello 234
Why?