xxxxxxxxxx
18
let countUp = 0;
let word = "GUCCI"
let colorList = ['black', 'green', 'blue']
function setup(){
createCanvas(500, 500);
frameRate(1);
}
function draw(){
background(100)
textSize(30);
for (let i = 0; i < countUp; i++){
text(word[i], 100+i*textSize, height/2)
}
if(countUp < word.length)
countUp += 1;
}