let userName = ''; userName ? console.log(`Hello, ${userName}!`) : console.log('Hello!'); let eightBall = ''; console.log(eightBall); let userQuestion = 3; let randomNumber = Math.floor(Math.random() * 8); if (userQuestion === 0) { console.log('Outlook not so good'); } else if (userQuestion === 1) { console.log('Do not count on it'); } else if (userQuestion === 2) { console.log('Signs point to yes'); } else if (userQuestion === 3) { console.log('Reply hazy try again'); } else if (userQuestion === 4) { console.log('Cannot predict now'); } else if (userQuestion === 5) { console.log('It is certain!'); } else if (userQuestion === 6) { console.log('It is decidedly so'); } else if (userQuestion === 7) { console.log('My sources say no'); } else{console.log('Ask me a question to get started.')};