on click button function is not working ounce I load my web page. It keeps saying I have a reference error at line 15 and I cant figure out why.
index.html file
Message GeneratorMessage Generator
script.js file
var qoutes = [
‘Life is like a box of chocolates, you never know what your gonna get. - Forrest Gump’,
‘Poop or get off the pot. - Grandpa’,
‘Only God can judge me. - Tupac’,
‘One small step for man, one giant leap for mankind. - Neil Armstrong’,
‘They are who we thought they were -Dennis Green’
]
function newQoute() {
var randomNumber = Math.floor(Math.random() * (qoutes.length));
document.getElementById(‘messageGenerator’).innerHTML = qoutes[randomNumber];
}