I want to add a number of values to an array, one at a time in different parts of a script, so each value tags on to the end of the array.
can I do this without keeping a record of the number of items I've added to the array?
Julia
array_name[] = "whatever you want to add";
Hope this helps 😉
thank you 🙂