function ilustra (nome, numero) { 
	this.nome = nome
	this.numero = numero
}
	
var n=13

tabilu = new ilustra(n)

tabilu[10] = new ilustra("bbasso",12)
tabilu[11] = new ilustra("etc",16)
tabilu[12] = new ilustra("pastel",16)
tabilu[13] = new ilustra("postite",18)