Challenge 3
First Run the code below, then try and recreate the hidden code without looking!
import random rolls = 10 counter = 1 print("10 dice rolls using a Python loop:") while counter <= rolls: dice = random.randint(1, 6) print(dice) counter += 1