int[] numbers = {10, 20, 30, 40, 50}; // Array of integers void setup() { size(400, 200); textSize(20); // Set a larger text size fill(0); // Set text color to black } void draw() { background(255); // Clear the screen with a white background // Loop through the array and display each number for (int i = 0; i < numbers.length; i++) { text("Number: " + numbers[i], 20, 30 * (i + 1)); } }