Which of the following calls the print function with "x wins!" if the variable x is found to be bigger than the variable y?
Group of answer choices
o if (x < y) { print("x wins!"); }
o function print(x > y) { "x wins!"; }
o var x = "x wins!"; if (x > y) { print("x wins!"); }