How would I get a code like this to keep everything formatted together?
Console.WriteLine("{0}\t{1}", name[j], score[j]);
When some of the names are longer and messes up the formatting so it outputs something like
Henrichson 100
Mike 80
Is there a way to make it so the scores are always in the same column?