I'm trying to figure out how to define an array of arbitrary dimension.
I have input in the form of an array list such as arr = {1, 2, 3}. This array list could contain any n number of elements. For the example arr, I need to define an array object[1][2][3].
I'm not really sure how to get started on this. Is this even possible?