Write a function that takes a list of integers and a list of strings, if the two lists do not have the same length then print("sorry this function will not work") if they do have the same length then make a new list where the value of newlist[0] equals whatever value of stringlist[0] is plus whatever the value of integer list[0] is . The same applies for new lists[1] etc.. when the function is complete print, complete! Then return the value of the new list Hint.. you may need to convert your integers into string.. Look at the str() method in python