PowerShell - String Operations
You want to create a file path string in PowerShell that includes a variable folder name. Which code correctly uses string interpolation to build the path?
$folder = "Documents"
$path = ?
