ask the user to enter a number that represents how many times they should roll a six sided die. simulate a dice roll using a loop and print out the result each time the loop is run using the output below as a guide. (the coin flip example in the slides can help!). count how many times the user rolls a six and display it at the end of the loop . you will need a condition for this, and a variable to keep track of how many times a six was rolled. where does it make sense to use a conditional? where does it make sense to initialize a variable? where does it make sense to count with the variable?