Crear matriz de todos los enteros entre dos números

var list = [];
for (var i = lowEnd; i <= highEnd; i++) {
    list.push(i);
}
Defiant Dogfish