Write a bash script that prints “My name is $1 and I am $2 years old.” where $1 and $2 are the first and second arguments passed to the script, respectively. The script should not print any additional characters or whitespace.
$ ./script-args Alice 30
My name is Alice and I am 30 years old.