Note: the println() function prints out a line of text with the value that you pass to it - so if you say println("Hi"), it will output: Hi Consider the following code: var i = 0; while (i < 3) { println("hi"); i++; } What does the code output? Choose 1 answer: Choose 1 answer: (Choice A) A hi hi hi (Choice B) B hi hi (Choice C) C hi