'use strict';/** * Create an array of numbers. * @param {number} from * @param {number} to * @returns {number[]} */functionrange(from,to){// TODO: make this inlined.constlist=newArray(to-from+1);for(leti=0;i<list.length;i+=1){list[i]=from+i;}returnlist;}module.exports={range,};