I have tried to implement the EXACT same code. If you are using an E series board, as I suspect you are, the logical way would be with an interrupt or occurrence. Unfortunately, there's no way to do that directly with an E series board. You could set up a triggered analog input, and have it set an occurrence.
If you're not familiar with an occurrence, it's like an interrupt. You can make code "wait" until an occurrence is set, and it doesn't take any processor time.
The other way (and untimately the way I went) is just to let your loop run relatively fast, and check the counter value every time. Once you get a real value, that's the one you add to your array.
Hope that helps.
Mark