Создать случайный 4 -значный номер JS

var val = Math.floor(1000 + Math.random() * 9000);
console.log(val);
Nikita Gourevitch