Exercise: Concatenate strings III

Use the join method to concatenate the strings. Separate the strings by a comma followed by a blank space (, ).
a = 'Code' b = 'test' c = 'debug' # desired output: 'Code, test, debug'
text =
print(text)
Python
Setting up Python environment...
Output