This step creates an actual array object on the heap memory with the specified size i.e.) number of elements this array will hold. Size must be a positive integer value. This is done using new [...]
This is the third method for declaring, creating and initializing an array object in one line. One Dimensional Array or, When you use this method size should not be specified. Person[] arr = new [...]