¿Qué valor se obtiene al ejecutar el siguiente código?
let a = "JS"; let b = "Test"; let resultado = a + " " + b;
"JS Test"
"JSTest"
"Test JS"
"TestJS"