Подскажите пожалуйста, что не так?
Не выводит дату в блоке через getElementById
var date = new Date();
var day = date.getDate();
var month = new Array(12);
var year = date.getFullYear();
month[0]="янв";
month[1]="фев";
month[2]="мар";
month[3]="апр";
month[4]="май";
month[5]="июн";
month[6]="июл";
month[7]="авг";
month[8]="сен";
month[9]="окт";
month[10]="ноя";
month[11]="дек";
document.getElementById('date').innerHTML=day+" "+month[date.getMonth()]+" "+year+" г.";