Notes: - Just an idea I had, in trying to visualize in how close random chance gets to a goal. Feel free to mess with the code. - This was really to test my programming breadth, to see how good I am with math and sort of coding knowledge. I have to say, I did far better on this idea than I thought I would. This project sort of came out of the zone, I would say. Everything was extremely smooth, I knew exactly what to do, and I did some things I have never attempted to do and got it all right first or second try. - Basically this project generates a random goal number within a number range you give it, and then goes through how many iterations you want to then guess another random number and then see if that guess is the closest guess so far. The green dot is the goal number, and the blue dots are all the random guesses, and these are all shown on the dot plot. - Code note: the indexing is a little weird because I can't have 0 as the first item in a list, which was causing some errors before, so I made it above 0 along with adding another item to make sure everything is working correctly.