Which of the following code segments will copy the values of a 5 element array named intOldValues into another 5 element array named intNewValues?. A). intIndex = 1. Do While intIndex <=5. intNewValues = intOldValues. intIndex += 1. Loop. B). intIndex = 0. Do While intIndex < 5. intNewValues = intOldValues. intIndex += 1. Loop. C). For intIndex = 1 To 5. intNewValues = intOldValues. Next intIndex. D). For intIndex = 0 To 4. intOldValues = intNewValues. Next intIndex. . Any feedback would be appreciated