what is the fastest way to create array from number 17 to number 120?
[17,18,20,...,118,119,120]
I tried to use Array method but its start with 0 and slice from some resson cut the last numbers and not the firsts numbers.
export const ARR_OF_AGES = Array(121).fill().slice(16).map((x, i) => {
return { value: i, label: i }
})