I don't want you to learn anything new yet. Just practice what you know.
This should take a while to figure out how to do. But "how to figure it out" is probably the most important skill we're learning.
---
**Challenge**
Make a buzzfeed quiz.
There should be a minimum of 8 questions and 4 possible outcomes.
Here are some hints:
*Updating variables*
```python
# if you make a variable...
score = 0
# ... then some other things happen
if answer == 'something':
# this will add 1 to the score
score = score + 1
```
*Getting inputs*
```python
# you probably want the user picking from a list of answers
print("What is your favorite color?")
print("1) red ")
print("2) blue")
print("3) green")
answer = input("> ")
# Then, the user should only put in "1", "2", or "3"
if answer == "1":
print("You picked red!")
elif answer == "2":
print("You picked blue!")
elif answer == "3":
print("You picked green!")
else:
print("Boooo, you don't know how to follow instructions")
```