Hey guys, in my journey through java i ran in to a bit of a problem.
How do i rearrange a array?
// Enter values to test here String[] s = { "from", "first", "to", "last" }; String w; System.out.println(w); // Enter your code here
How would i rearrange array s, to compile backwards in string w? so it would read "last to first from"?