What are the options for the Inspector to show a 3 x 3 array. For example...
a := Array2D rows: 3 columns: 3 tabulate: [:r :c | (r * 10) + c ].
a inspect.

cheers -ben