Challenge 1
First Run the code below, then try and recreate the hidden code without looking!
import random guess = int(input("Guess either 1 or 2: ")) answer = random.randint(1, 2) print("Computer chose: " + str(answer)) if answer == guess: print("You guessed right!") else: print("You guessed wrong :(")