How would you add to an existing array

I have an existing weapons array and was in the process of adding a leveling system so that once i obtain a certain level i get a weapon i just wanted to know if i can add to it or if there is something else i would have to do

Well first I’m kinda curious why you dont setup the values on the array variables themselves instead of the way you have it set up by makeing an array then setting the array variable. I mean unless they are supposed to be blank and the values you are adding to them get added later…

Anywho you shouldnt have any problem adding to the arrays you can either resize the array to make it bigger then use the add node to add what ever value to an empty index at the end or use the set array element and check resize you just need to pass in the index you want to set your value at

i dont think you need to use the resize method, im pretty sure you can just use the add method and the array will be resized automatically