Find files in LInux between two sizes

Question:
Find all files between 5mb and 10mb in the /usr directory and save the output (along with parent path) in the /home/bob/size.txt file

Answer:

sudo find /usr/ -type f -size +5M -size -10M > /home/bob/size.txt