What I am doing here essentially is discarding the first statement where I declare an array of size 5 and creating an entirely new array of size 6.
Because an array is a reference type the second statement is overriding the first with new keyword (where '[]' is the shorthand of it).