I'm brand new to programming, busy practicing some coding. What am I doing wrong here?
Thanks in advance for any help!

>>>farm_equipment = ["jd r4038", "jd 9620", "jd 9630", "jd 4455", "jd 6140d", "jd 9860", "jd 9870", "jd seeder"] >>>message_c = "\nList of current equipment: " >>>print(message_c + farm_equipment)I'm getting the following error:
Error:Traceback (most recent call last):
File "every_function_c3.py", line 17, in <module>
print(message_c + farm_equipment)
TypeError: must be str, not list
Of course there are other lines of code, they all execute perfectly, but I'm not sure if any of those have an impact on these particular lines.Thanks in advance for any help!