try this
new String[] {"One","Two","Three","Four"};
or
List<String> places = Arrays.asList("One", "Two", "Three");
ARRAYS
try this
new String[] {"One","Two","Three","Four"};
or
List<String> places = Arrays.asList("One", "Two", "Three");
ARRAYS