function tokenURI(uint256 tokenId) public view virtual override returns (string memory){ require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); //if the block timestamp is divisible by 2 show the aURI if (block.timestamp % 2 == 0) { return bytes(aUri).length > 0 ? string(abi.encodePacked(aUri, tokenId.toString(), baseExtension)) : ""; } I am a little confused as to what the line of code in the return block means (what does the "?" signify, sorry for my noob question, I'm just dipping my feet into solidity.
? string(abi.encodePacked(aUri, tokenId.toString(), baseExtension)) : "";