What value is obtained when executing the following code?
let a = "JS"; let b = "Test"; let result = a + " " + b;
"Test JS"
"JSTest"
"JS Test"
"TestJS"