| 
  
   Menu 
  × 
      
    × 
      Correct! 
    Exercise:Change the value from "Volvo" to "Opel", in the  
String[] cars = {"Volvo", "BMW", "Ford"};
@(7) = @(6);
System.out.println(cars[0]);
 
String[] cars = {"Volvo", "BMW", "Ford"};
cars[0] = "Opel";
System.out.println(cars[0]);
 
    Not CorrectClick here to try again. Correct!Next ❯ | 
This will reset the score of ALL 59 exercises.
Are you sure you want to continue?