Going back to this homework exercise:
Table[Blend[{Yellow, Hue[x]}], {x, 0, 1, .20}] // Hold // FullForm
Returns:
Hold [Table [Blend [List[Yellow, Hue [x]]], List[x, 0, 1, 0.2` ]]]
Blend will take a list of 2 colors and a value x, which determines the weighting of the 2 colors to blend. I presume that providing that list with no 2nd argument gives a default blending-value of .5 -- and it's just a bug in the documentation that this one-argument option is not listed. I'll report that bug in the docs.
The real value of your comment is learning when to apply Hold to see what's going on under the hood. I see the obvious error in my interpretation of what was happening. Much more to learn! I will put those videos on my list to study, but it will take some time (and probably lots of popcorn) to get through them. Thank you again.