This example comes from http://reference.wolfram.com/mathematica/ref/Plot.html?q=Plot&lang=enthe Mathematica documentation for Plot under 'Basic Examples' -Basic Examples.
Can someone please explain why these are each plotted as a different color in this case:
Plot[Evaluate[Table[BesselJ[n, x], {n, 4}]], {x, 0, 10}, Filling -> Axis] 
But when Evaluate[]Evaluate[] is removed to get, all of them are the same color:
Plot[Table[BesselJ[n, x], {n, 4}], {x, 0, 10}, Filling -> Axis] They are all plotted as the same color!?
I know it must have to do with the order of things being evaluated, but I'm really not sure why it is working like this - can someone please point me in the correct direction? Thanks!