Hi Chad, > Prelude> let fs = [(+2), (*4)] > Prelude> :t fs > fs :: [Integer -> Integer] > Prelude> :t sequence fs I think you need to import Control.Monad.Instances to get the appropriate instance in scope. Thanks Neil