First off, apologies if my syntax is not correct, as I am new to programming. I have created an array with 7 elements. The array is populated by reading from a text file, where all 7 elements reside in a specific order. It is important that these elements stay in the correct order in the array. However, I have noticed that when one of the elements in the text file is deleted, and the array is then populated, the array does not know what to do when the expected element is not there. All array elements then shift up a place, and my application does not behave as intended. Can someone point me in the right direction to fix this problem? Basically I need to either insert some sort of placeholder for when an element is blank (if this is possible), or find some other solution to keep all the remaining array elements in their proper place. Thanks very much in advance for any responses.