// Write statements that will swap the values of two variables public class Challenge { public static void main(String[] args) { int x = 5; int y = 10; // This will print: x=5, y=10 System.out.println("x=" + x + ", y=" + y); int temp = x; x = y; y = temp; // This should print: x=10, y=5 System.out.println("x=" + x + ", y=" + y); } }