I am creating a String array and using System.out.println to print the values in the array. All good and works as expected, returning [South Africa, England] but the code won't compile unless I include a return statement, but the return statement just dumps out a load of garbage "[Ljava.lang.String;@85bdf6". Is there any way I can either combine the System.out.println and return statements so they do the same thing, and I just have [South Africa, England] appearing?I am creating a String array and using System.o