Associate the text Loving with the checkbox by only nesting the text Loving in a label element and place it to the right side of the checkbox input element.
Hint The text Loving should no longer be located directly to the right of your checkbox. It should be wrapped in a label element. Make sure there is a space between the two elements.
This makes no sense - the directions tell you to place the label element to the right of the input element - after seeing that the code doesn’t work it tells you that the text Loving should no longer be to the right of the checkbox element. ???
In your attempt, you added a label element to the right of the checkbox element.
So far so good. However, you are missing only 1 thing now:
add a for attribute with the same value as the input element’s id
If you can do this last step, you should pass. (note, this instruction is taken from the exercise text).
Edit: also as mentioned below, once the for attribute is created correctly, make sure you place a single space in between the input element and the label element.