If I have a 2D array like:
array = [["hello"], [1,2,3], [4,5,6]]
How can I get the program to remove the first sub array so that it turns out like this:
array = [[1,2,3], [4,5,6]]
If I try to do array[0].pop[0], the array ends up like this:
array = [[], [1,2,3], [4,5,6]]