export const range = (length: number, start = 1) => { return Array.from({ length }, (n, i) => i + start); };