What I'm trying to do is write two functions that each generate a list of random numbers. After the lists are generated I want to use another block of code to check the elements in list 1 and if an element from list 1 is in list 2, I want it to append that element to a new list and at the end print out this new list. I can't get the functions to cooperate. I thought this should work only because the functions take no arguments. Thanks in advance. Ignore the top commented out block. Here's what I got.