So I'm trying to figure out how to assign a number of indexes based on the input. Let's say the input is:
9 10 11 12 13
I want the computer to create an array with the number of numbers in the list; in this case here are 5 numbers. I want the code to create an array and make it have 5 total elements/indexes.
How can I do this?
[NOTE: there will not always be 5 numbers, there may be any amount of numbers]