//Write a range function that takes two arguments, start and end, and returns an array containing all the numbers from start up to (and including) end.functionrange(start, end){
let array = [];
for (let i=start; i<=end; i++){
array.push(i);
}
return array;
}
console.log(range(1,10));