function fillArray(length) { return Array.from({ length }, (_, i) => i); } export { fillArray };