xxxxxxxxxx
17
let greetings = ["Hello", "Ni hao", "Namaste", "Hola", "Bonjour", "Hej", "Ahoj", "Xin chao", "Jambo", "Zdravstvuyte"];
function setup() {
createCanvas(400, 400);
textSize(15);
}
function draw() {
background(220);
for (let i=0; i<greetings.length; i++) {
// The i value is used for index values and y position values.
text(greetings[i], 20, 30 + i*20);
}
noLoop();
}