monsara,
'use strict';
let userInput;
const numbers = [];
let total = 0;
do {
userInput = prompt(`Введите ${numbers.length + 1}-e число`, '');
if (userInput == +userInput && userInput.trim() ) { numbers.push(+userInput) }
else if(userInput !== null) alert('Было введено не число, попробуйте еще раз');
} while (userInput !== null);
for (const value of numbers) {
total = total + value;
}
alert(`Общая сумма ${numbers.length} чисел равна ${total}`);
console.log(numbers);