What is incorrect in the following code to create a table row?
<td><tr>Row 1</tr></td>
The <tr> tag needs an attribute
<tr>
The text "Row 1" is not inside a <th> tag
<th>
The <tr> tags are inside the <td> tags
<td>
The <td> tags are inside the <tr> tags