extension Array { func chunked(into size: Int) -> [[Element]] { stride(from: 0, to: count, by: size).map { index in Array(self[index..