Question Powershell app removal error

First get the correct package name using this command and locating it in the list, then copy it without any extra spaces:

Get-AppxPackage -AllUsers | Select Name, PackageFullName

then plug it in here (where (package name) is the name from the list we got above):

Remove-AppxPackage -Package (package name) -AllUsers