Hey people, im a bit stuck with a work for college... I need to make a program that prints in screen 3 random parts of the peoples faces. Ive managed to get it working till the random part, cause it only prints in order. The code as far as i have it is in the end. Plese help me, not only im a noob, but this is a very important work for my semester! Thanks in advance and sorry for the english, not my mother tongue :)
println(nombreImagen);
azar = int(random(3));
println(azar);
//nombreImagen[].add = cargar imagen dinamicamente de la carpeta XXXXX;
imagen_01 = loadImage(nombreImagen[azar]); // Load the image into the program
imagen_02 = loadImage(nombreImagen[1]);
imagen_03 = loadImage(nombreImagen[2]);
noLoop(); // Makes draw() only run once
}