<!-- BEFORE SUBMITTING A NEW ISSUE... Please try a different theme to make sure the problem is not with the theme and is actually with the syntax. If you are not reporting a bug please remove this template and describe the issue in your own words. --> ### Environment - Editor and Version (VS Code, Atom, Sublime): - Your primary theme: Dark ### Issue Description New feature added to PowerShell https://github.com/PowerShell/PowerShell/pull/10636 for null coalescing operators. New feature added to PowerShell https://github.com/PowerShell/PowerShell/pull/10960 for null conditional member access. #### Screenshots <!-- If possible include screenshots of the issue --> ### Expected Behavior <!-- How would you expect it to behave --> ### Code Samples <!-- Include any code sippets that can be used to reproduce the described behavior. --> ```PowerShell $x ?? $y $x ??= 10 ${x}?.name ${x}?[0] ${x}?.MyMethod() ${x}?.name = 'myname' ${x}?['item'] = 'value' ```