
Just as with variable values, Blueprints can store data within Arrays. You can think of an Array as a collection of variables all stored within a single unit.
An Array can only hold values of a single type. For instance, a Boolean Array can only hold Boolean values.
Array variables will contain an icon of a 3x3 colored grid to show that they are Arrays and not standard variables. In the case of a disconnected Array, the grid icon will have a darkened center. Once connected, the entire grid will be visible, as seen below.

Creating Arrays
Create an Array by clicking on the icon next to the variable name when creating the variable.

A menu will appear where you can select the grid icon. Once selected, the new item will be an Array rather than a standard variable.

Editing Arrays
You can edit the value of an Array either via the Blueprint Default settings, or at any point along a Blueprint node network. These networks can be in the Construction Script, a function, a macro, or an Event Graph.
Array Defaults
You can set default values for an Array. Create the necessary Array and enter the Class Defaults tab or the Defaults mode of the Blueprint Editor. You will see a section named for your Array, as shown below:

If you do not see your Array listed in the Class Defaults, make sure that you have compiled your Blueprint since the Array was created.
To edit the values of an Array's defaults:
-
In the Class Defaults tab, click the
button. This will create a new index. Repeat for as many items as you would like the Array to contain.
In this example, 3 indices have been added.
-
Set each value accordingly. Note that the way in which you set the value will depend on the type of Array in use.
-
To insert, remove, or duplicate an Array index, click the
button next to the entry to bring up the edit menu:
If you add or remove indices from the middle of the list, the remaining numbers will automatically update.
Setting Array Values via Node Networks
If your Array is intended to be populated at runtime, you will generally not use defaults. Rather, you will use nodes within the Construction Script or an Event Graph to populate each index. For instance, you could use the Add or Insert nodes to add a new value to the next available index, or to insert a value at a given index, respectively.

For a complete list of the Array control nodes within Blueprints, please see the Array Nodes page.
Array Indices
It is also important to note that values within an Array are given zero-based index values, meaning that the first index is 0, not 1. For example, if you were to add five items to an Array, the list would, internally, look something like this:
Index 0 | First Item |
Index 1 | Second Item |
Index 2 | Third Item |
Index 3 | Fourth Item |
Index 4 | Fifth Item |
This is important to keep in mind, as there will be times when you need to call on a specific item by its index value.