I need some help parsing a string array returned from method.
current results:
Here is the test Information: SPRCBT - Algebra 1 - Form 9D - Joe Smith
Here is my Test Name [Ljava.lang.String;@5ec24193
Any ideas on the best way to return the values of the array instead if the index?
if (i == 2){
System.out.println("Here is the test Information: " + testPage.getTestInfo());
test = testPage.getTestInfo().split(" - ");
System.out.println("Here is my Test Name " + test);
}