| 
  
   Menu 
  × 
      
    × 
      Correct! 
    Exercise:Fill in the missing parts to create three variables of the same type, using a comma-separated list: 
@(3) x = 5@(1) y = 6@(1) z = 50;
System.out.println(x + y + z);
 
int x = 5, y = 6, z = 50;
System.out.println(x + y + z);
 
    Not CorrectClick here to try again. Correct!Next ❯ | 
This will reset the score of ALL 59 exercises.
Are you sure you want to continue?