flow
(required): The flow input triggers the node to execute and create the new array.flow
: The flow output passes the flow control to the next node after the array is created.array
: The newly created array.valueType
(optional, default: “string”): Specifies the data type for the elements in the array. Can be one of: “string”, “number”, “float”, “boolean”, “object”, “array”.socketInputs
(optional): Allows you to specify a list of input sockets for providing the initial values of the array. Each socket input will be added as an element to the array in the order they are listed.valueType
if you need the array to hold elements other than strings.socketInputs
configuration to provide initial values for the array.flow
input to trigger the node and create the array.array
output to pass the newly created array to other nodes in your spell.valueType
configuration if you know the type of elements the array will hold. This makes your spell more readable and can help prevent errors.flow
input will result in the node not executing and the array not being created.valueType
of the array and the types of the socket input values can lead to unexpected behavior or errors.