Given a list of integers, return a new list with the squares of each integer.
[1, 2, 3, 4, 5]
[1, 4, 9, 16, 25]
Bot