I'm creating a simple media player. I'm having difficulty creating nested arrays of classes.

I would like to have "Band(0).Album(0).Song(0)" (corresponding to first song of first album of first band).

I currently have (stripped version):
Code:
 Class Song
   Public Title as String
   Public Path as String
 End Class
I have a sub to "for each" of the bands, "for each" album of each band and "for each" song in each album of each band. Now I'm having trouble grouping all this up into a nested array. So I can call each song using the method above. Can someone give me pointers?