Implement the omitLongStrings method that takes a list of strings and returns a stream that consists of the elements from a given list that are less than 4 characters long.
Example: ["a", "bbb", "cccc", "dddddd"] → ["a", "bbb"]
Please, use streams to solve the problem.