Multiple Choice Question (MCQ)

Question: What is the output of the following JavaScript code?
var x = 'ITI';
var y = 'GOVT';
var o = y concat(x)
document.write(o);
A. ITI GOVT
B. ITIGOVT
C. GOVTITI
D. GOVT ITI
Correct Answer: GOVTITI