Given a number, create an array of length n, numbers increasing from 1 - n.
// input: n = 100 // output: [1, 2, 3, ..., 100]
/* output */