Feature request: Array of enum members

It’d be a nice little touch if there would be an automatic node for an array that contains every member of an enum. It isn’t very necessary, but isn’t hard to do either.

To send them to an actor as an array. Sometimes I just need to send 1-2,but some cases every single one once.

Why would you ever want an array with all the values of an enum? It would logically be the same as having an array with the index as the value for each position in the array e.g. [0,1,2,3] where the index = value at index position.