# NewArrayList

Create a new array or List.

![NewArrayList](./images/NewArrayListCalculator.png)

## Properties

<table border="1" class="docutils">
<thead>
<tr><th>Property Name</th><th>Description</th></tr>
</thead>
<tbody valign="top">
<tr>
<td>
Element Type
</td>
<td>
Element type
</td>
</tr>
<tr>
<td>
Output
</td>
<td>
Output slot of newly created instance
</td>
</tr>
<tr>
<td>
Output Type
</td>
<td>
Type of newly created instance<dl class="docutils">
<dt>Array</dt><dd>
            Array
            </dd>
<dt>List</dt><dd>
            List
            </dd>
</dl>
</td>
</tr>
<tr>
<td>
Parameter List
</td>
<td>
List of elements to store
</td>
</tr>
 </tbody>
</table>


## Remarks

In an AOT environment such as IL2CPP, List<specified type> may not work properly unless it is used in the code.<br />
            See <a href="https://caitsithware.com/assets/arbor/docs/en/manual/dataflow/list.html#AOTRestrictions">Ahead-of-Time (AOT) Restrictions</a> for more information.

