Currently, LParen placed after variable is handled as function call. and space is removed. ``` powershell Join-Path $env:TEMP([Guid]::NewGuid()) ``` should be ``` powershell Join-Path $env:TEMP ([Guid]::NewGuid()) ```