Xiao Wang is a librarian responsible for shelving 8 books labeled A, B, C, D, E, F, G, H on a shelf with positions 1 to 8.

The constraints are:
1. Book B must be placed in position 3.
2. Book E cannot be placed in position 7.
3. Book D cannot be placed in position 6.
4. Book H must be to the right of book G.
5. Book D must be to the right of book B.
6. Book C cannot be placed in position 1.
7. Book E must be to the right of book C.
8. Book A must be placed in position 8.
9. Book H must be to the right of book C.
10. Book E must be to the right of book G.

Question:
Based on the above conditions, please arrange the 8 books from left to right on the bookshelf, i.e. positions 1 through 8. Return your answer with the format <<< a list of strings >>>, one solution is enough.for example:
<<<["A", "B", "C"]>>>
Your answer:
