### Description [Null Safe Access](https://symfony.com/doc/current/reference/formats/expression_language.html#null-safe-operator) was added in https://github.com/symfony/expression-language/pull/7 however that syntax does not work for array access. [Javascript DOES support this syntax](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining#syntax): `obj.val?.[expr]` ### Example ```js myObject.getItems()?.[0]?.myFunction() ``` to avoid array access error.