dolist is a looping macro created to easily loop through the lists. One of the simplest uses would be:
CL-USER> (dolist (item '(a b c d))
(print item))
A
B
C
D
NIL ; returned value is NIL
Note that since we did not provide return value, NIL is returned (and A,B,C,D are ...