If you need to create an array of objects, the syntax would be:
public racks: Rack[];
However, I am looking to create an array that can hold multiple arrays of racks, like this:
[
[rack1, rack2, rack3],
[rack4, rack5, rack6],
[rack7]
]
How can I define a variable that can accommodate this type of structure?