PowerShell - Functions
Identify the error in this PowerShell function that is supposed to return the sum of two numbers:
function Add-Numbers {
param($a, $b)
$sum = $a + $b
Write-Host $sum
}