Is it possible to save an array of names within an array? For example, Lets say we have 2 car companies, Toyota and Honda. And lets say we want to create an array within the car company array of the cars they make. For example...
var ArrayWithinArray = ["Toyota, "SIENNA", "CAMRY"", "Honda, "Odyssey", "Civic""]
How would i do this using swift?