Answer:
hello_world_component = ["Hello",","," ","world","!"]
Explanation:
hello_world_component = ["Hello",","," ","world","!"]
print('array named "hello_world_component" is : ',end=' ')
print(hello_world_component)
string = "".join(hello_world_component)
print('Now string from array becomes: '+string)