1. $Count is a number, while the array is called $Numbers.
2. $Count is never greater than 100, so you need to change that to a less than.
3. This code will give you 0-99, not 1-100.
4. Your output is inside of the array-filling while loop, so you'll get an output like 1, 1, 2, 1, 2, 3, 1, 2, 3...