&__item, &--active, and &__item--active follow BEM rules correctly.
Step 2: Analyze &-extra
&-extra is invalid because BEM modifiers use double hyphen --, not single hyphen.
Final Answer:
Incorrect use of &-extra for a modifier -> Option D
Quick Check:
BEM modifiers need --, not - [OK]
Hint: Modifiers use --, not single - after & [OK]
Common Mistakes:
Using single hyphen for modifiers
Thinking &--active is invalid
Missing nesting for combined element-modifier
5. You want to style a BEM block .form with an element __input and a modifier --error on the element. Which SASS nesting code correctly applies red border only when the input has the error modifier?