Complete the function to return a dictionary using list1 as the keys and list2 as the values.
Just completely lost on how to start this.
def createDict(list1, list2):
    # expected output: {'tomato': 'red', 'banana': 'yellow', 'lime': 'green'}  
    print(createDict(['tomato', 'banana', 'lime'], ['red','yellow','green']))        
    # expected output: {'Brazil': 'Brasilia', 'Ireland': 'Dublin', 'Indonesia': 'Jakarta'}
    print(createDict(['Brazil', 'Ireland', 'Indonesia'], ['Brasilia','Dublin','Jakarta']))
    # expected output: {'tomato': 'red', 'banana': 'yellow', 'lime': 'green'} 
    # expected output: {'Brazil': 'Brasilia', 'Ireland': 'Dublin', 'Indonesia': 'Jakarta'}
 
     
     
     
    