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

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

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