var mess = new Array(

'I DESIGN ALL KINDS OF STUFF.',
'DESIGNERS ARE THE COOL KIDS.',
'I DRAW PRETTY PICTURES.',
'WILL DESIGN FOR FOOD.',
'WILL DESIGN FOR MONEY.',
'MY DREAMS ARE IN RGB.',
'ART CLASS WAS MY FAVORITE.',
'I CREATE FUN STUFF.');

var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    
