What is the output for the following expression?function test(x) { while(x < 5) { x++; } return x; } alert(test(2));