I have two arrays for months and days.
var meses = new Array("Janeiro","Fevereiro","Marco","Abril","Maio","Junho","Julho","Agosto","Septembro","Outubre","Novembro","Dezembro");
var dias= new Array(31,28,31,30,31,30,31,31,30,31,30,31);
I wanted to make a condition that for example position 1 (February) be assigned to position 1 of the other array and then print to a table.