var a=Math.round(Math.random()*4)
// это число должно совпадать с максимальным индексом таблицы ссылок
txt = new Array();
txt[0]="Текст 01"
txt[1]="Текст 02"
txt[2]="Текст 03"
txt[3]="Текст 04"
txt[4]="Текст 05"
document.write (""+txt[a]+"");
var a=Math.round(Math.random()*4)
// это число должно совпадать с максимальным индексом таблицы ссылок
txt = new Array();
txt[0]="Текст 01"
txt[1]="Текст 02"
txt[2]="Текст 03"
txt[3]="Текст 04"
txt[4]="Текст 05"
document.write (""+txt[a]+"");
var txt = [
"Текст 01",
"Текст 02",
"Текст 03",
"Текст 04",
"Текст 05"
];
var clr = [
"blue",
"red",
"teal",
"tomato",
"green"
];
var a = Math.round(Math.random()* 4);
var b = Math.round(Math.random()*4);
document.write ("<p style='color:" + clr[b] +";'>" + txt[a] +"</p>");