a browser generator
when a user navigates to the browser:
onclick - generate a random affirmation
the affirmation message appears on the screen
kawaii fortune cookie image
fortune cookie
credit: Dj Tripti
some of the fortune cookie messages
//constants
array of affirmations
//state variables
ourMessage
//cached elements
affirm me button
message element
//event listeners
document onload
btn click
//functions
init (onload)
make a random index
make ourMessage equal to the affirmation array at random index's value
render function
render()
change the message element's inner text to ourMessage
handleclick()
make another random index
make ourMessage equal to the affirmation array at random index's value
render function