To change the marker type of an ordered list (<ol>) to Arabic numbers, what CSS code would you use?
<ol>
ol { list-style-type: decimal; }
ol { list-marker: arabic; }
ol { list-style: number; }
ol { marker-type: arabic; }