Which of these statements are true about arrays?

They can only hold elements of a single typeArrays have a set capacityArrays don't have typesWe can't change the elements in an array once they've been created

Nice! Arrays have a set capacity and can only hold elements of the type they've been declared with. We can change the elements in array at any time.

Uh oh! Arrays have a set capacity and can only hold elements of the type they've been declared with. We can change the elements in array at any time.