What's true about an Array?

The elements are sequentialThey have a limit of 10 elementsThey can have elements of different typesWe cannot declare and initialize them in one go

Awesome! The elements are sequential and all the same type. There's no limit to the amount of elements we can include but the count is fixed after declaration.

We can also declare and initialize them in one go.

Ah, nope. The elements are sequential and all the same type. There's no limit to the amount of elements we can include but the count is fixed after declaration.

We can also declare and initialize them in one go.