Given the following JavaScript code snippet, select the correct ways to call the calculate function and pass two numbers as arguments for the calculation. The function accepts an arithmetic operator (+, -, *, /) and two numbers as arguments.
function calculate(operator, num1, num2) {
switch (operator) {
case '+':
return num1 + num2;
case '-':
return num1 - num2;
case '*':
return num1 * num2;
case '/':
return num1 / num2;
default:
return 'Invalid operator';
}
}