Hello, so I was going along with the lessons fairly smoothly until I got to the Parameters lesson to print out the first, third, and fifth parameter.
I've tried multiple methods but below is just an example of one
#!/usr/env/bin bash echo "1: $1" echo "3: $3" echo "5: $5"
The result in the cygwin window is below:

Is there something i'm doing wrong or is this an actual issue?