Can Blueprints declare array members?

Trying to figure out if Blueprints can declare arrays as a member. For example, on C++ side these are called TArray. Programmers can declare TArrays natively and expose them to Blueprints. However, if I attempt to declare a local array member in the rollout I do not see an ‘Array’ option. I see things like float, int, object, struct, etc. Basically, everything is available but Array

To be clear, I do know how to ‘make array’ within the content of a blueprint function or graph. However, I cannot figure out how to declare an Array as a class member of my Blueprints

When you declare your variable next to the type drop down is a little grid. Clicking that will make the variable an array.

You can find more details about array variables in blueprints here: https://docs.unrealengine.com/latest/INT/Engine/Blueprints/UserGuide/Arrays/index.html

Thanks Marc!