xxxxxxxxxx
37
function setup() {
createCanvas(710, 400);
input = createInput();
input.position(20, 65);
button = createButton('submit');
button.position(input.x + input.width, 65);
button.mousePressed(greet);
greeting = createElement('h2', 'what is your word?');
greeting.position(20, 5);
}
function greet() {
const userinput = input.value();
greeting.html(userinput);
input.value('');
}
function randomWords(){
var word = [0,0,0];
word[0] = "fuck";
word[1] = "this";
word[2] = "project";
var words = word[Math.floor(Math.random() * word.length)];
var a = document.write("Guess a fucking word");
if (a == words)
{
document.write("correct");
}
}