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