What will be the difference between using keyword new in declaring a new array or not using it? I saw something like that on the internet but didn't fully understand the difference: new keyword on the right side of the assignment using this syntax. This is only possible during the array’s declaration.
for example:
string[] names = {"Joe", "Sally", "Thomas"};
string[] names = new string[] {"Joe", "Sally", "Thomas"};