Welcome to DrRacket, version 6.8 [3m]. Language: racket, with debugging; memory limit: 128 MB. > (map odd? '(1 2 3 4 5 6)) '(#t #f #t #f #t #f) > (apply and (map odd? '(1 2 3 4 5 6))) . and: bad syntax in: and > (andmap odd? '(1 2 3 4 5 6)) #f > (andmap odd? '(1 3 7 5)) #t > (ormap odd? '(1 2 4 6)) #t > (ormap odd? '(2 4 6)) #f >