xxxxxxxxxx
19
let students=['Liya', 'Liya2', 'Liya3'];
function setup() {
createCanvas(400, 400);
students.push('Liya4');
students.splice(2,1);
for(i=0; i>students.length; i++) {
console.log(students[i]);
}
console.log(students);
console.log(students.length);
}
function draw() {
background(220);
}