Вы потеряли фигурную скобку, вы закрыли определение класса перед конструктором.Это должно быть следующим образом:
public class City {
private String Country_Name;
private String [] Cities ;
private String [] Destinations;
public City(String Country_Name, String[] Cities, String[] Destinations) {
this.Country_Name = Country_Name;
this.Cities = new String [2];
this.Destinations = new String [2];
}
}
Также Вы пропустили открытие фигурной скобки.Создайте объект следующим образом:
String[] cities = {"Kuala","Johor"}; // Giving only 2 cities as in constructor you've given as new String[2]
String[] destinations = {"Cyberjaya","Putrajaya"}; // Same as above
City c1 = new City("Malaysia", cities, destinations);
Если вы хотите больше городов и направлений, обновите конструктор как
public City(String Country_Name, String[] Cities, String[] Destinations) {
this.Country_Name = Country_Name;
this.Cities = Cities;
this.Destinations = Destinations;
}