How can I visualize the volume of the solid of revolution generated by the functions $f(x)=x$ and $g(x)=x^2$ in mathematica? I asked chat-gpt and it gave me the command
RevolutionPlot3D[{f[x], g[x]}, {x, 0, 1}, AxesLabel -> {"x", "y", "z"},
RevolutionAxis -> "X", PlotRange -> All]
But I think that it is not correct since when trying to verify with the solid given by $y=1$ and $y=0$ (in this case, a cylinder should appear) but the graph appears empty.
How can I view the order? thank you.
Actualization: By example, with the command
RevolutionPlot3D[{{x, 1}, {x, 2}}, {x, 0, 1}, RevolutionAxis -> "X"]
The revolution generated by each curve appears but I would like the volume between the two revolutions to come out with padding. (That is, I would like to visually see a solid cylinder.) Is there a command that can do that? Thank you.

