const person = [];
let name = document.querySelectorAll(".name-hiin");
let motho = document.getElementById(".motho");
const blockTime = document.querySelectorAll('.person-block-all');
const days = document.querySelectorAll(".deys");
const start = document.querySelectorAll(".start");
const end = document.querySelectorAll(".end");
console.log(blockTime.length);
for (let i = 0; i < blockTime.length; i++) {
person.push([
name[i].textContent,
days[i].textContent,
start[i].textContent,
end[i].textContent,
motho.textContent,
]);
}
console.log(person); цикл не работает