CODE
def Roll():
    dice = random.randint(1,6)
    Print ("The number rolled was ", dice)
    
roll()
#This code contains errors.  Can you fix this Python code? Have a go!
        
Welcome to Python Online.
		
Type in your Python code and click on the RUN button or use the following shortcuts:

Chrome and Edge on Windows: Alt + R
Firefox on Windows: Alt + Shift + R
Firefox and Chrome on Mac: Control + Option + R
Firefox and Chrome on Linux: Alt + Shift + R
OUTPUT
FUNCTION CALLS