let arr = []; let index = 0; while (true) { arr[index] = prompt('Напишите елемент масива'); if(arr[index] === null) { break; } index++; }