What does the following code return?
let x = "hello"; let y = "world"; console.log(x + " " + y);
hello world
helloworld
Error
hello + world