Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 281 Bytes

File metadata and controls

10 lines (6 loc) · 281 Bytes

Для вывода нужен случайный номер от 0 до arr.length-1 включительно.

var arr = ["Яблоко", "Апельсин", "Груша", "Лимон"];

var rand = Math.floor(Math.random() * arr.length);

alert( arr[rand] );