Array manipulation - Splice & Push

Is there an equivalent function as .Splice and .Push regarding Array manipulation in UiPath?
I wish to either populate (.push) an Array with n values, or remove (.splice) index n in an existing array.

I know of lists and list manipulation in UiPath.

Hi, arrays in .NET are fixed in size, they need to be created with its size and cant change afterwards… See how they can be manipulated in VB.NET:
VB.Net - Arrays

@LarsFeilberg
the mentioned actions are more fitting to the nature of list

converting an array to list can be done with YourArrayVar.toList