I'm sure it's very easy: I want to draw a circle and at specific, equally spaced angles display some words. So I can draw the circle as curved arrows using a \foreach. How can I use the same \foreach to take words I want to display from a list of words? Here is some code (which I didn't make, but found in texexample.net)
\def \n {12}
\def \radius {4cm}
\def \margin {9}
\foreach \s in {1,...,\n}
{
\node at ({360/\n * (\s - 1)}:\radius) {\s};
\draw[->, >=latex] ({360/\n * (\s - 1)+\margin}:\radius)
arc ({360/\n * (\s - 1)+\margin}:{360/\n * (\s)-\margin}:\radius);
}
\end{tikzpicture}
\end{document}
Now, instead of the{\s}, which displays numbers at the nodes, I'd like it to display words.



