Write a line of code that assigns the values Jon Snow, Tyrion Lannister, and Cersei to the elements in the array strGameOfThrones().

To assign the values "Jon Snow", "Tyrion Lannister", and "Cersei" to the elements in the array `strGameOfThrones()`, you can use the following line of code in most programming languages:

```python
strGameOfThrones = ["Jon Snow", "Tyrion Lannister", "Cersei"]
```

In this example, the array `strGameOfThrones` is created with three elements: "Jon Snow", "Tyrion Lannister", and "Cersei". Each value is enclosed in double quotes and separated by a comma. This code initializes the array with the specified values assigned to each element.