Jennifer needs your help with logging in Android. She is writing code in Kotlin. Help her choose which code snippet is written in Kotlin.
Refer to the Android official docs to learn how to Write and View Logs with Logcat. Right there, you can find code examples with a language switcher to switch between Java and Kotlin. You do not need to know anything about logging: just select which code snippet is written in Kotlin based on what you see in the docs.
A)
private const val TAG = "TestActivity"
Log.i(TAG, "Test Message")
B)
private static final String TAG = "TestActivity";
Log.i(TAG, "Test Message");