New array
You want to create a new array!
Here are a few ways to create a new array in different programming languages:
JavaScript
const myArray = [];
Python
my_array = []
Java
int[] myArray = new int[0];
C++
int* myArray = new int[0];
Ruby
my_array = []
Swift
var myArray: [Int] = []
These are just a few examples, but the syntax may vary depending on the language and its specific array implementation.
What do you want to do with your new array?