For some methods, modern JS allows template literals to be passed without using parens.
ie [1,2,3].join`+` //=> '1+2+3'
console.log
, however, returns something unexpected.
console.log`hello,world` //=> ["hello,world", raw: Array(1)]
Why is an array returned here as the output of console.log?