xxxxxxxxxx
11
var emojis = ['🍔','😋','😅','🤣','😃','😂','😊','😇','😍','😉','🙃','😘','😭','😜','😝','😛','😎','🤓','😨','😱','😳','😰','😥','😓','🤗','🤥','🙄','😧','😲','😴','🤤','😪','😵','🤐','🤢','🤒','🤖']
function setup() {
createCanvas(600, 400);
}
function draw() {
background(255);
// Use a for loop and the emojis in the array in line 1 to make an emoji wallpaper.
}