Answer:
Answer explained below
Explanation:
import sys
name = sys.argv[1]
aString = ''
newString = name + ', hello!'
print(newString)
NOTE:
A string is not an integer, so you need to add the apostrophe which denotes it is a set of characters, rather than just adding it to the name variable. This would result in an inappropriate type error.