The internet is filled with confusing PEMDAS/BEDMAS/BODMAS/BIDMAS puzzles. A minimal example which requires one to avoid misinterpreting any of these mnemonic rules to mean "addition first, subtraction afterward" is: $0 - 0 + 1$. The correct (by convention) answer is $1$. This requires us to recognise that as the expression involves only operators of the same precedence level, we should evaluate left-to-right.
Why not assign each of the common arithmetic operators a distinct precedence level?
Assigning each operator a distinct level of precedence would be messy. Trivial algebraic manipulations (changing the order of terms) would require us to put parentheses everywhere to get right, and that would make them not trivial any more. Also, it would make it non-trivial to swap $1 + (-2)\cdot x$ for $1-2x$ in the middle of an expression, as you would have to add parentheses to it to make it consistent. All in all it's a terrible idea whose minor increase in consistency not in any way outweighs the reduction in readability and manipulability.
Also, it would make the meaning of an expression stray further from how we would naturally interpret it when we say it out loud. For instance,
immediately becomes
just by swapping out words for symbols. And the fact that $+$ and $-$ share operator precedence (and also that multiplication has higher precedence) is exactly what allows for that translation to happen painlessly, without having to put any thought into it.