xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
let myText = "Hello World!";
let textArray = split(myText, "");
textArray = shuffle(textArray);
let randomText = join(textArray, "");
print(randomText);
// for (let i = 0; i <textArray.length; i +=1) {
// print(textArray[i]);
// }
}
function draw() {
background(220);
}