See the following example: ```js var re1 = /\p{Ll}/iu; ```  This report is incorrect as `\p{Ll}` matches all lower-case letters. The `i` flag is very much necessary.