How do I select all specific color Divs in this html file? [closed]

My consoleMy html

I tried

let orangeCards = document.getElementById(“game”).querySelectorAll(“.orange”);

const cards = document.querySelectorAll(‘div’);

const cards = document.querySelectorAll(‘#game .red’);