splitArray(array, subGroupLength, type) {
let index = 0
const newArray = []
while (index < array.length) {
newArray.push(array.slice(index, index += subGroupLength))
}
return newArray
},
splitArray(array, subGroupLength, type) {
let index = 0
const newArray = []
while (index < array.length) {
newArray.push(array.slice(index, index += subGroupLength))
}
return newArray
},