In godot docs array description, "A generic array that can contain several elements of any type."
(reference: https://docs.godotengine.org/en/stable/classes/class_array.html?highlight=array)
So my question is can arrays contain any types of value in any programming language?and are these "several elements" and "list of values" have the same meaning?
What I understand is "An array is a list of values.In GDScript, arrays can contain any types of value."