Collections Data Structure C#

// Arrays\Array Conversions
using System;
public class ArrayConversions
{
    public static void PrintArray(object[] arr)
    {
        foreach (object obj in arr)
        Console.WriteLine("Word: {0}", obj);
    }
    public static void Main()
    {
        string s = "I will not buy this record, it is scratched.";
        char[] separators = {' '};
        string[] words = s.Split(separators);
        PrintArray(words);
    }
}