String[] answers = {"YES", "Try again later", "Only if you buy me vBucks", "Soon", "PUBG is the most trash ripoff of Fortnite", "outlook not so good", "This is the bestest ate ball ever", "Ice cream is awesome", "NO", "You are not human", "only if you say PUBG sux", "ur ofensiv", "https://upload.wikimedia.org/wikipedia/commons/e/eb/Magic_eight_ball.png"};
PImage eightBall = loadImage("https://upload.wikimedia.org/wikipedia/commons/e/eb/Magic_eight_ball.png");
int responseNumber = 0;
void setup() {
size(1000,1000);
background(255);
responseNumber = (int) random(0, answers.length);
}
void draw() {
image(eightBall, 0, 0, 1000, 1000);
textAlign( CENTER );
textSize(50);
fill(255);
text(answers[responseNumber], 500, 500);
}