xxxxxxxxxx
16
let firstWord = 'Hello';
let secondWord = 'World';
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
textSize(40);
text(firstWord + " " + secondWord + "!", 100, 200);
text(`${firstWord} ${secondWord}!` , 100, 100);
}