xxxxxxxxxx
var Alphabet = [26];
function setup() {
createCanvas(windowWidth,windowHeight);
Alphabet[0] = "a";
Alphabet[1] = "b";
Alphabet[2] = "c";
Alphabet[3] = "d";
Alphabet[4] = "e";
Alphabet[5] = "f";
Alphabet[6] = "g";
Alphabet[7] = "h";
Alphabet[8] = "i";
Alphabet[9] = "j";
Alphabet[10] = "k";
Alphabet[11] = "l";
Alphabet[12] = "m";
Alphabet[13] = "n";
Alphabet[14] = "o";
Alphabet[15] = "p";
Alphabet[16] = "q";
Alphabet[17] = "r";
Alphabet[18] = "s";
Alphabet[19] = "t";
Alphabet[20] = "u";
Alphabet[21] = "v";
Alphabet[22] = "w";
Alphabet[23] = "x";
Alphabet[24] = "y";
Alphabet[25] = "z";
}
function draw() {
}
function mouseClicked(){
print(Alphabet[int(random(0,26))]);
}