Write a method that takes a 2d array of Strings and returns
a String consisting of all the String values in
the array, collected by moving through the grid in a spiral pattern: start
in the top left corner and move across the top row, then down the
rightmost column, then to the left, and up, and so on, like this:
You can assume the grid is at least 1x1.