Multiple choice technology programming languages /de{3,}/ matches deeef def deef deeeef AandD Reveal answer Fill a bubble to check yourself E Correct answer Explanation The regex /de{3,}/ matches 'd' followed by 3 or more 'e' characters. 'deeef' has exactly 3 e's, and 'deeeef' has 4 e's - both satisfy the {3,} quantifier (minimum 3).