Write a PowerShell script that takes two arguments and performs basic operations on these arguments plus some additional tasks. ?In particular, your script should:
Receives two strings as arguments passed to it as (positional) arguments/parameters.
Displays on the screen both these arguments with a text explaining them and the type each of them (e.g., "The first received parameter is: ....").
Creates a variable and assign to it concatenated first and second arguments.
Outputs the concatenated string.